結果

問題 No.1098 LCAs
ユーザー anagohirameanagohirame
提出日時 2020-06-26 21:46:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,842 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-07-04 20:34:34
合計ジャッジ時間 21,043 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 1,419 ms
68,352 KB
testcase_19 AC 1,416 ms
68,352 KB
testcase_20 AC 1,371 ms
68,224 KB
testcase_21 AC 1,387 ms
68,352 KB
testcase_22 AC 1,366 ms
68,352 KB
testcase_23 AC 1,235 ms
61,952 KB
testcase_24 AC 1,254 ms
61,952 KB
testcase_25 AC 1,196 ms
61,184 KB
testcase_26 AC 1,303 ms
67,328 KB
testcase_27 AC 1,292 ms
67,456 KB
testcase_28 AC 1,782 ms
94,336 KB
testcase_29 AC 1,777 ms
97,408 KB
testcase_30 AC 1,842 ms
96,696 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