結果

問題 No.1098 LCAs
ユーザー neterukunneterukun
提出日時 2020-06-26 22:47:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 595 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 166,144 KB
最終ジャッジ日時 2024-07-04 22:47:22
合計ジャッジ時間 9,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 37 ms
51,584 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 36 ms
51,968 KB
testcase_13 AC 71 ms
71,040 KB
testcase_14 AC 67 ms
70,528 KB
testcase_15 AC 68 ms
70,784 KB
testcase_16 AC 70 ms
71,296 KB
testcase_17 AC 68 ms
70,784 KB
testcase_18 AC 492 ms
134,912 KB
testcase_19 AC 509 ms
138,368 KB
testcase_20 AC 526 ms
138,340 KB
testcase_21 AC 509 ms
138,112 KB
testcase_22 AC 595 ms
138,240 KB
testcase_23 AC 465 ms
160,788 KB
testcase_24 AC 485 ms
160,712 KB
testcase_25 AC 430 ms
162,352 KB
testcase_26 AC 428 ms
166,144 KB
testcase_27 AC 435 ms
165,376 KB
testcase_28 AC 581 ms
137,472 KB
testcase_29 AC 576 ms
137,600 KB
testcase_30 AC 595 ms
137,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
info = [list(map(int, input().split())) for i in range(n - 1)]


root = 0
graph = [[] for i in range(n)]
for a, b in info:
    a -= 1
    b -= 1
    graph[a].append(b)
    graph[b].append(a)


stack = [root]
tp_sort = [root]
visited = [False] * n
visited[root] = True
while stack:
    v = stack.pop()
    for nxt_v in graph[v]:
        if visited[nxt_v]:
            continue
        visited[nxt_v] = True
        stack.append(nxt_v)
        tp_sort.append(nxt_v)

dp = [-1] * n
dp_cnt = [0] * n
while tp_sort:
    v = tp_sort.pop()
    dp_sum = 0
    dp[v] = 0
    for chi_v in graph[v]:
        if dp[chi_v] == -1:
            continue
        dp[v] += dp_sum * dp_cnt[chi_v] * 2
        dp_cnt[v] += dp_cnt[chi_v] 
        dp_sum += dp_cnt[chi_v]
    dp[v] += dp_sum * 2 + 1
    dp_cnt[v] += 1

for val in dp:
    print(val)   
0