-
Notifications
You must be signed in to change notification settings - Fork 111
/
solution.py
40 lines (36 loc) · 938 Bytes
/
solution.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
#!/bin/python3
import os
import sys
#
# Complete the componentsInGraph function below.
#
def find(i, root):
while i != root[i]:
i = root[i]
return i
def union(x, y, root, count):
if x != y:
# union without ranking
root[y] = x # // updating the parent/root of the new component
#updating the size of the new component
count[x] += count[y]
count[y] = 0
return root, count
n = int(input())
root = [i for i in range(2*n+1)]
count = [1 for i in range(2*n+1)]
for i in range(n):
inp = list(map(int, input().split()))
# find root of a & b
x = find(inp[0]-1, root)
y = find(inp[1]-1, root)
root, count = union(x, y, root, count)
mincount = 2*n+1
maxcount = 0
for i in range(2*n+1):
# find min and max
if count[i] > 1 and count[i] < mincount:
mincount = count[i]
if count[i] > maxcount:
maxcount = count[i]
print(mincount, maxcount)