-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathincremental-even-weighted-cycle-queries.cpp
More file actions
58 lines (53 loc) · 1.43 KB
/
incremental-even-weighted-cycle-queries.cpp
File metadata and controls
58 lines (53 loc) · 1.43 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
// Time: O(n + e)
// Space: O(n)
// union find
class Solution {
public:
int numberOfEdgesAdded(int n, vector<vector<int>>& edges) {
int result = 0;
UnionFind uf(n);
for (const auto& e : edges) {
if (uf.union_set(e[0], e[1], e[2])) {
++result;
}
}
return result;
}
private:
class UnionFind {
public:
UnionFind(int n)
: set_(n)
, rank_(n)
, parity_(n) { // added
iota(begin(set_), end(set_), 0);
}
int find_set(int x) {
if (set_[x] != x) {
const int root = find_set(set_[x]);
parity_[x] ^= parity_[set_[x]]; // added
set_[x] = root;
}
return set_[x];
}
bool union_set(int x, int y, int w) {
const int x0 = x, y0 = y;
x = find_set(x), y = find_set(y);
if (x == y) {
return parity_[x0] ^ w ^ parity_[y0] == 0; // modified
}
if (rank_[x] > rank_[y]) {
swap(x, y);
} else if (rank_[x] == rank_[y]) {
++rank_[y];
}
set_[x] = y; // Union by rank.
parity_[x] = parity_[x0] ^ w ^ parity_[y0]; // added
return true;
}
private:
vector<int> set_;
vector<int> rank_;
vector<int> parity_; // added
};
};