-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDUF.cpp
67 lines (48 loc) · 1.42 KB
/
DUF.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
#include <iostream>
#include <cstdio>
using namespace std;
#define MAXN 100
int id [MAXN]; // id[i] = parent of i
int sz [MAXN]; // sz[i] = number of objects in subtree rooted at i
int conCom; // number of components
// Create an empty union find data structure with N isolated sets.
void init(int N) {
conCom = N;
for (int i = 0; i < N; i++) {
id[i] = i;
sz[i] = 1;
}
}
// Return the number of disjoint sets.
// Return component identifier for component containing p
int find(int p) {
while (p != id[p])
p = id[p];
return p;
}
// Are objects p and q in the same set?
bool connected(int p, int q) {
return find(p) == find(q);
}
// Replace sets containing p and q with their union.
void makeUnion(int p, int q) {
int i = find(p);
int j = find(q);
if (i == j) return;
// make smaller root point to larger one
if (sz[i] < sz[j]) { id[i] = j; sz[j] += sz[i]; }
else { id[j] = i; sz[i] += sz[j]; }
conCom--;
}
int main()
{
int n,a,b;
scanf("%d",&n);
init(n);
// read in a sequence of pairs of integers (each in the range 0 to N-1),
while (scanf("%d %d",&a,&b)==2) {
if (connected(a, b)) continue;
makeUnion(a, b);
}
return 0;
}