-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathunion_find_rank.cpp
123 lines (101 loc) · 2.76 KB
/
union_find_rank.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
//
// Union-Find (union by rank)
//
// verified:
// Yosupo Library Checker - Unionfind
// https://judge.yosupo.jp/problem/unionfind
//
// AOJ Course DSL_1_A Set - Disjoint Set: Union Find Tree
// http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=DSL_1_A&lang=jp
//
/*
same(x, y): x と y が同じグループにいるか, 計算量はならし O(α(n))
merge(x, y): x と y を同じグループにする, 計算量はならし O(α(n))
groups(): グループ分けの構造を返す, 計算量は O(n)
*/
#include <bits/stdc++.h>
using namespace std;
// Union-Find
struct UnionFind {
// core member
vector<int> par, rank;
// constructor
UnionFind() { }
UnionFind(int n) : par(n , -1), rank(n, 0) { }
void init(int n) { par.assign(n, -1), rank.assign(n, 0); }
// core methods
int root(int x) {
if (par[x] == -1) return x;
else return par[x] = root(par[x]);
}
bool same(int x, int y) {
return root(x) == root(y);
}
bool merge(int x, int y) {
x = root(x), y = root(y);
if (x == y) return false;
if (rank[x] < rank[y]) swap(x, y);
if (rank[x] == rank[y]) ++rank[x];
par[y] = x;
return true;
}
// get groups
vector<vector<int>> groups() {
vector<vector<int>> member(par.size());
for (int v = 0; v < (int)par.size(); ++v) {
member[root(v)].push_back(v);
}
vector<vector<int>> res;
for (int v = 0; v < (int)par.size(); ++v) {
if (!member[v].empty()) res.push_back(member[v]);
}
return res;
}
// debug
friend ostream& operator << (ostream &s, UnionFind uf) {
const vector<vector<int>> &gs = uf.groups();
for (const vector<int> &g : gs) {
s << "group: ";
for (int v : g) s << v << " ";
s << endl;
}
return s;
}
};
//------------------------------//
// Examples
//------------------------------//
void YosupoUnionFind() {
int N, Q;
cin >> N >> Q;
UnionFind uf(N);
for (int q = 0; q < Q; ++q) {
int type, x, y;
cin >> type >> x >> y;
if (type == 0) uf.merge(x, y);
else {
if (uf.same(x, y)) cout << 1 << endl;
else cout << 0 << endl;
}
//cout << uf << endl;
}
}
void AOJ_DSL_1_A() {
int N, Q;
cin >> N >> Q;
UnionFind uf(N);
for (int q = 0; q < Q; ++q) {
int com, x, y;
cin >> com >> x >> y;
if (com == 0) uf.merge(x, y);
else {
if (uf.same(x, y)) cout << 1 << endl;
else cout << 0 << endl;
}
//cout << uf << endl;
}
}
int main() {
YosupoUnionFind();
//AOJ_DSL_1_A();
}