結果

問題 No.1098 LCAs
ユーザー anagohirameanagohirame
提出日時 2020-06-26 21:45:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,936 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 445,952 KB
最終ジャッジ日時 2024-07-04 20:31:38
合計ジャッジ時間 12,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 37 ms
51,584 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 66 ms
68,096 KB
testcase_14 AC 66 ms
69,120 KB
testcase_15 AC 64 ms
68,096 KB
testcase_16 AC 70 ms
68,352 KB
testcase_17 AC 72 ms
68,352 KB
testcase_18 AC 582 ms
122,240 KB
testcase_19 AC 578 ms
122,368 KB
testcase_20 AC 591 ms
121,728 KB
testcase_21 AC 571 ms
122,112 KB
testcase_22 AC 594 ms
121,728 KB
testcase_23 AC 467 ms
126,484 KB
testcase_24 AC 468 ms
127,368 KB
testcase_25 AC 395 ms
123,940 KB
testcase_26 AC 407 ms
124,544 KB
testcase_27 AC 400 ms
124,928 KB
testcase_28 AC 1,461 ms
391,552 KB
testcase_29 AC 1,434 ms
397,568 KB
testcase_30 AC 1,936 ms
445,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
n = int(input())
adj = [[] for _ in range(n)]
children = [[] for _ in range(n)]
ans = [0 for _ in range(n)]
for _ in range(n-1):
    u, v = map(int, input().split())
    adj[u-1].append(v-1)
    adj[v-1].append(u-1)

def dfs(x, p):
    for v in adj[x]:
        if v == p:
            continue
        dfs(v, x)
    s = sum(children[x])
    res = 2*s+1
    for i in children[x]:
        res += i * (s-i)
    if x != 0:
        children[p].append(s+1)
    ans[x] = res
    return

dfs(0, -1)
print(*ans, sep="\n")
0