結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 30 ms
11,136 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 31 ms
11,008 KB
testcase_17 AC 31 ms
11,136 KB
testcase_18 AC 1,081 ms
68,480 KB
testcase_19 AC 1,033 ms
68,352 KB
testcase_20 AC 1,023 ms
68,352 KB
testcase_21 AC 1,025 ms
68,352 KB
testcase_22 AC 1,049 ms
68,480 KB
testcase_23 AC 895 ms
62,080 KB
testcase_24 AC 892 ms
62,080 KB
testcase_25 AC 872 ms
61,184 KB
testcase_26 AC 926 ms
67,456 KB
testcase_27 AC 930 ms
67,456 KB
testcase_28 AC 1,425 ms
94,336 KB
testcase_29 AC 1,422 ms
97,408 KB
testcase_30 AC 1,449 ms
96,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
    return sys.stdin.buffer.readline()[:-1]
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