結果
問題 | No.1418 Sum of Sum of Subtree Size |
ユーザー | nephrologist |
提出日時 | 2021-03-05 22:17:34 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,236 bytes |
コンパイル時間 | 285 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 100,940 KB |
最終ジャッジ日時 | 2024-10-07 02:31:43 |
合計ジャッジ時間 | 6,652 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
54,092 KB |
testcase_01 | AC | 36 ms
53,504 KB |
testcase_02 | AC | 37 ms
52,936 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 71 ms
74,300 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 79 ms
76,784 KB |
testcase_24 | AC | 72 ms
75,168 KB |
testcase_25 | AC | 72 ms
74,824 KB |
testcase_26 | AC | 73 ms
74,564 KB |
testcase_27 | AC | 45 ms
61,252 KB |
testcase_28 | AC | 61 ms
68,932 KB |
testcase_29 | AC | 79 ms
76,960 KB |
testcase_30 | AC | 81 ms
76,968 KB |
testcase_31 | AC | 70 ms
73,176 KB |
testcase_32 | AC | 82 ms
76,832 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 75 ms
78,076 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 36 ms
52,492 KB |
testcase_40 | AC | 34 ms
52,992 KB |
testcase_41 | AC | 35 ms
53,040 KB |
testcase_42 | AC | 36 ms
52,584 KB |
testcase_43 | AC | 35 ms
53,836 KB |
ソースコード
import sys input = sys.stdin.buffer.readline n = int(input()) mod = 10 ** 9 + 7 graph = [[] for _ in range(n)] for _ in range(n - 1): a, b = map(int, input().split()) a, b = a - 1, b - 1 graph[a].append(b) graph[b].append(a) # graph and n are necessary idx = 0 # graph and n is necessary def dfs(start): par = [-1] * n depth = [-1] * n euler = [] stack = [] stack.append(start) depth[start] = 0 while stack: v = stack.pop() euler.append(v) d = depth[v] for u in graph[v]: if par[v] == u: continue par[u] = v depth[u] = d + 1 stack.append(u) return par, euler par, euler = dfs(0) dp1 = [0] * n for v in euler[::-1]: dp1[v] = 1 for u in graph[v]: if u == par[v]: continue dp1[v] += dp1[u] dp1[v] %= mod dp2 = [0] * n for v in range(n): dp2[v] = n - dp1[v] ans = 0 for v in range(n): # 下側 ans += (n - dp1[v]) * dp1[v] ans %= mod for u in graph[v]: if u == par[v]: continue # 上側 ans += dp2[u] * dp1[u] ans %= mod # 自分中心 ans += n ans %= mod print(ans)