-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcountComponents.py
58 lines (42 loc) · 1.41 KB
/
countComponents.py
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
class DSU:
def __init__(self, N):
self.par = list(range(N))
def find(self, x):
if x != self.par[x]:
self.par[x] = self.find(self.par[x])
return self.par[x]
def union(self, x, y):
xr, yr = self.find(x), self.find(y)
if xr == yr: return
self.par[yr] = xr
return True
class Solution:
def countComponents(self, n: int, edges: List[List[int]]) -> int:
dsu = DSU(n)
for e in edges:
dsu.union(e[0], e[1])
return len({dsu.find(x) for x in dsu.par})
class DSU:
def __init__(self, N):
self.par = list(range(N))
def find(self, x):
if self.par[x] != x:
self.par[x] = self.find(self.par[x])
return self.par[x]
def union(self, x, y):
xr, yr = self.find(x), self.find(y)
if xr == yr: return False
self.par[yr] = xr
return True
class Solution:
def countComponents(self, n: int, edges: List[List[int]]) -> int:
dsu = DSU(n)
vs = set()
for e in edges:
dsu.union(e[0], e[1])
vs.add(e[0])
vs.add(e[1])
st = set()
for e in edges:
st.add(dsu.find(e[0]))
return len(st) + (n - len(vs))