Skip to content

Commit 9f69dd1

Browse files
authored
Create 1579-remove-max-number-of-edges-to-keep-graph-fully-traversable.kt
1 parent a93039d commit 9f69dd1

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
class Solution {
2+
3+
class DSU(val n: Int) {
4+
val parent = IntArray(n + 1) {it}
5+
val rank = IntArray(n + 1) {1}
6+
var components = n
7+
8+
fun find(x: Int): Int {
9+
if (parent[x] != x)
10+
parent[x] = find(parent[x])
11+
return parent[x]
12+
}
13+
14+
fun union(x: Int, y: Int): Boolean {
15+
val pX = find(x)
16+
val pY = find(y)
17+
18+
if (pY == pX)
19+
return false
20+
21+
if (rank[pX] > rank[pY]) {
22+
rank[pX] += rank[pY]
23+
parent[pY] = pX
24+
} else {
25+
rank[pY] += rank[pX]
26+
parent[pX] = pY
27+
}
28+
29+
components--
30+
return true
31+
}
32+
33+
fun connected() = components == 1
34+
}
35+
36+
fun maxNumEdgesToRemove(n: Int, edges: Array<IntArray>): Int {
37+
val a = DSU(n)
38+
val b = DSU(n)
39+
40+
var edgeAdded = 0
41+
for ((type, u, v) in edges) {
42+
if (type == 3) {
43+
if (a.union(u, v) or b.union(u, v))
44+
edgeAdded++
45+
}
46+
}
47+
48+
for ((type, u, v) in edges) {
49+
when (type) {
50+
1 -> {
51+
if (a.union(u, v))
52+
edgeAdded++
53+
}
54+
2 -> {
55+
if (b.union(u, v))
56+
edgeAdded++
57+
}
58+
}
59+
}
60+
61+
return if (a.connected() && b.connected()) edges.size - edgeAdded else -1
62+
}
63+
}

0 commit comments

Comments
 (0)