-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpset3.py
66 lines (53 loc) · 1.07 KB
/
pset3.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
59
60
61
62
63
64
65
66
firstLine = raw_input().split()
N = firstLine[0]
M = firstLine[1]
L = firstLine[2]
N = int(N)
inputRows = int(M) + int(L)
rounds = []
for i in range(inputRows):
rounds.append(raw_input().split())
set = {}
contributions = 0
class makeSet:
def __init__(self, name):
self.parent = self
self.name = name
self.score = 1
self.highest = self
def find(x):
b = x
while b.parent != b.parent.parent:
x.score += b.parent.score
b = b.parent
x.parent = b.parent
return b.parent
def union(x,y):
xRoot = find(x)
yRoot = find(y)
yHigh = highest(y)
xHigh = highest(x)
yRoot.highest = xHigh
xRoot.parent = yHigh
def highest(x):
if x.parent == x:
return x.highest
else:
return highest(x.parent)
def contribute(x):
score = x.score
while x != x.parent:
score += x.parent.score
x = x.parent
return score
for i in range(N):
set[str(i)] = makeSet(str(i))
for i in range(len(rounds)):
a = set[rounds[i][0]]
if len(rounds[i]) == 1:
contributions = contributions + contribute(a)
else:
b =set[rounds[i][1]]
if find(a) != find(b):
union(a,b)
print contributions