-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1579. Remove Max Number of Edges to Keep Graph Fully Traversable
78 lines (67 loc) · 1.79 KB
/
1579. Remove Max Number of Edges to Keep Graph Fully Traversable
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
class UnionFind {
int[] parent;
int components;
public UnionFind(int n) {
parent = new int[n + 1];
components = n;
for (int i = 1; i <= n; i++) {
parent[i] = i;
}
}
public int find(int x) {
if (parent[x] != x) {
parent[x] = find(parent[x]);
}
return parent[x];
}
public boolean union(int x, int y) {
int rootX = find(x);
int rootY = find(y);
if (rootX == rootY) {
return false; // Both nodes are already in the same component
}
parent[rootY] = rootX;
components--;
return true;
}
public int getComponents() {
return components;
}
}
class Solution {
public int maxNumEdgesToRemove(int n, int[][] edges) {
UnionFind alice = new UnionFind(n);
UnionFind bob = new UnionFind(n);
int removedEdges = 0;
for (int[] edge : edges) {
int type = edge[0];
int u = edge[1];
int v = edge[2];
if (type == 3) {
if (!alice.union(u, v)) {
removedEdges++;
} else {
bob.union(u, v);
}
}
}
for (int[] edge : edges) {
int type = edge[0];
int u = edge[1];
int v = edge[2];
if (type == 1) {
if (!alice.union(u, v)) {
removedEdges++;
}
} else if (type == 2) {
if (!bob.union(u, v)) {
removedEdges++;
}
}
}
if (alice.getComponents() != 1 || bob.getComponents() != 1) {
return -1;
}
return removedEdges;
}
}