-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLCA.cpp
More file actions
69 lines (57 loc) · 1.92 KB
/
LCA.cpp
File metadata and controls
69 lines (57 loc) · 1.92 KB
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
class LeastCommonAncestor {
private:
using Tree = vector<vector<int>>;
vector<vector<int>> kth_ancestor_;
vector<int> height_;
inline void FillHeightKthAncestor(const Tree& tree, int cur, int p) {
height_[cur] = (p != -1) ? (height_[p] + 1) : 0;
for (int k = 0, d = p; d != -1; k++) {
kth_ancestor_[cur][k] = d;
d = kth_ancestor_[d][k];
}
for (int next : tree[cur]) {
if (next != p) {
FillHeightKthAncestor(tree, next, cur);
}
}
}
public:
LeastCommonAncestor(const Tree& tree) {
int log_size = 0;
while ((1 << log_size) <= tree.size()) {
++log_size;
}
kth_ancestor_ .resize(tree.size(), vector<int>(log_size, -1));
height_.resize(tree.size());
FillHeightKthAncestor(tree, 1, -1);
}
inline int LCA(int v, int u) {
if (height_[v] > height_[u])
swap(v, u);
for (int k = 0, d = height_[u] - height_[v]; d; k++, d >>= 1)
if (d & 1)
u = kth_ancestor_[u][k];
for (int k = kth_ancestor_[0].size() - 1; u != v;)
if (kth_ancestor_[u][k] != kth_ancestor_[v][k] || !k) {
u = kth_ancestor_[u][k];
v = kth_ancestor_[v][k];
}
else
k--;
return u;
}
int Dist(int v, int u) { return height_[v] + height_[u] - 2 * height_[LCA(v, u)]; }
int GetKthAncestor(int v, unsigned int distance) {
for (int k = 0; distance && k < kth_ancestor_[0].size(); ++k, distance >>= 1) {
if (distance & 1) {
v = kth_ancestor_[v][k];
}
}
return v;
}
inline bool IsAncestor(int posAncestor, int v) {
if (height_[v] < height_[posAncestor])
return 0;
return GetKthAncestor(v, height_[v] - height_[posAncestor]) == posAncestor;
}
};