-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcon-junctionspoj.py
48 lines (41 loc) · 1.21 KB
/
con-junctionspoj.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
def dfs(node, parent, ptaken):
if dp[node][ptaken] != -1:
return dp[node][ptaken]
taking, nottaking = 1, 0
total = 0
tways=1
nways=1
ways[node][ptaken]=1
for neig in graph[node]:
if neig != parent:
taking += dfs(neig, node, 1)
nottaking += dfs(neig, node, 0)
tways=(tways*ways[neig][1])%10007
nways=(nways*ways[neig][0])%10007
if ptaken:
dp[node][ptaken] = min(taking, nottaking)
if taking==nottaking:
ways[node][ptaken]=(tways+nways)%10007
elif taking<nottaking:
ways[node][ptaken]=tways
else:
ways[node][ptaken]=nways
else:
dp[node][ptaken] = taking
ways[node][ptaken]=tways
return dp[node][ptaken]
if __name__ == '__main__':
for _ in range(int(input())):
n = int(input())
graph = [[]for ii in range(n)]
for i in range(n - 1):
a, b = map(int, input().split())
a = a - 1
b = b - 1
graph[a].append(b)
graph[b].append(a)
dp = [[-1 for i in range(2)]for j in range(n)]
ways=[[0 for i in range(2)]for j in range(n)]
a=dfs(0, -1, 1)
b=ways[0][1]
print(str(a)+" "+str(b))