-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path684.redundant-connection.java
64 lines (55 loc) · 1.29 KB
/
684.redundant-connection.java
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
/*
* @lc app=leetcode id=684 lang=java
*
* [684] Redundant Connection
*/
// @lc code=start
class Solution {
private int[] id, sz;
public void UnionFind(int n) {
id = new int[n];
sz = new int[n];
for (int i = 0; i < n; i++) {
id[i] = i;
sz[i] = 1;
}
}
public int find(int p) {
int root = p;
while (root != id[root])
root = id[root];
while (p != root) { // Do path compression
int next = id[p];
id[p] = root;
p = next;
}
return root;
}
public void union(int p, int q) {
int root1 = find(p);
int root2 = find(q);
if (root1 == root2)
return;
if (sz[root1] < sz[root2]) {
sz[root2] += sz[root1];
id[root1] = root2;
} else {
sz[root1] += sz[root2];
id[root2] = root1;
}
}
public int[] findRedundantConnection(int[][] edges) {
UnionFind(edges.length+1);
for (int[] e : edges) {
int xl = find(e[0]);
int yl = find(e[1]);
if (xl != yl) {
union(xl, yl);
} else {
return e;
}
}
return null;
}
}
// @lc code=end