-
Notifications
You must be signed in to change notification settings - Fork 0
/
LCA_Weighted.cpp
126 lines (109 loc) · 3.78 KB
/
LCA_Weighted.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#include <bits/stdc++.h>
using namespace std;
#define cin_2d(vec, n, m) for(int i = 0; i < n; i++) for(int j = 0; j < m && cin >> vec[i][j]; j++);
#define cout_2d(vec, n, m) for(int i = 0; i < n; i++, cout << "\n") for(int j = 0; j < m && cout << vec[i][j] << " "; j++);
#define fixed(n) fixed << setprecision(n)
#define ceil(n, m) (((n) / (m)) + ((n) % (m) ? 1 : 0))
#define fill(vec, value) memset(vec, value, sizeof(vec));
#define mul_mod(a, b, m) (((a % m) * (b % m)) % m)
#define add_mod(a, b, m) (((a % m) + (b % m)) % m)
#define all(vec) vec.begin(), vec.end()
#define rall(vec) vec.rbegin(), vec.rend()
#define sz(x) int(x.size())
#define debug(x) cout << #x << ": " << (x) << "\n";
#define fi first
#define se second
#define ll long long
#define ull unsigned long long
#define Mod 1'000'000'007
#define OO 2'000'000'000
#define EPS 1e-9
#define PI acos(-1)
template < typename T = int > using Pair = pair < T, T >;
vector < string > RET = {"NO", "YES"};
template < typename T = int > istream& operator >> (istream &in, vector < T > &v) {
for (auto &x : v) in >> x;
return in;
}
template < typename T = int > ostream& operator << (ostream &out, const vector < T > &v) {
for (const T &x : v) out << x << ' ';
return out;
}
template < typename treeType = int , typename graphType >
class LCA {
public:
LCA(
int n = 0,
const vector < vector < pair < int, graphType > > > &G = {},
function < treeType(treeType, treeType) > op = [](treeType a, treeType b){ return a + b; },
treeType _neutral = treeType(),
int root = 1
) : N(n), LOG(0), ROOT(root), adj(G), operation(op), neutral(_neutral) {
while((1 << LOG) <= N) LOG++;
anc.assign(N + 5, vector < int > (LOG));
cost.assign(N + 5, vector < treeType > (LOG, neutral));
depth.assign(N + 5, 0);
dfs(ROOT);
}
int kth_ancestor(int u, int k) const {
if(depth[u] < k) return -1;
for(int bit = 0; bit < LOG; bit++)
if(k & (1 << bit))
u = anc[u][bit];
return u;
}
int get_lca(int u, int v) const {
if(depth[u] < depth[v]) swap(u, v);
u = kth_ancestor(u, depth[u] - depth[v]);
if(u == v) return u;
for(int bit = LOG - 1; bit >= 0; bit--)
if(anc[u][bit] != anc[v][bit])
u = anc[u][bit], v = anc[v][bit];
return anc[u][0];
}
treeType query(int u, int v) const {
int lca = get_lca(u, v);
return operation(get_cost(u, depth[u] - depth[lca]), get_cost(v, depth[v] - depth[lca]));
}
private:
int N, LOG, ROOT;
const vector < vector < pair < int, graphType > > > &adj;
vector < vector < int > > anc;
vector < vector < treeType > > cost;
vector < int > depth;
function < treeType(treeType, treeType) > operation;
treeType neutral;
void dfs(int u, int p = 0){
for(auto& [v, w] : adj[u]){
if(v == p) continue;
depth[v] = depth[u] + 1;
anc[v][0] = u, cost[v][0] = treeType(w);
for(int bit = 1; bit < LOG; bit++){
anc[v][bit] = anc[anc[v][bit - 1]][bit - 1];
cost[v][bit] = operation(cost[v][bit - 1], cost[anc[v][bit - 1]][bit - 1]);
}
dfs(v, u);
}
}
treeType get_cost(int u, int dist) const {
if(depth[u] < dist) return neutral;
treeType ret = neutral;
for(int bit = 0; bit < LOG; bit++){
if(dist & (1 << bit)){
ret = operation(ret, cost[u][bit]);
u = anc[u][bit];
}
}
return ret;
}
};
void Solve(){
}
int main(){
ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
int t = 1;
//cin >> t;
while(t--)
Solve();
return 0;
}