結果

問題 No.872 All Tree Path
ユーザー lloyzlloyz
提出日時 2022-07-07 22:09:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 763 ms / 3,000 ms
コード長 754 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 173,972 KB
最終ジャッジ日時 2024-06-07 04:34:17
合計ジャッジ時間 9,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 760 ms
173,820 KB
testcase_01 AC 753 ms
173,828 KB
testcase_02 AC 763 ms
173,684 KB
testcase_03 AC 350 ms
171,752 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 726 ms
173,828 KB
testcase_06 AC 735 ms
173,588 KB
testcase_07 AC 761 ms
173,972 KB
testcase_08 AC 143 ms
84,048 KB
testcase_09 AC 142 ms
85,120 KB
testcase_10 AC 139 ms
85,376 KB
testcase_11 AC 143 ms
85,248 KB
testcase_12 AC 136 ms
85,376 KB
testcase_13 AC 41 ms
53,120 KB
testcase_14 AC 41 ms
53,760 KB
testcase_15 AC 41 ms
53,632 KB
testcase_16 AC 41 ms
53,760 KB
testcase_17 AC 41 ms
53,632 KB
testcase_18 AC 42 ms
54,144 KB
testcase_19 AC 42 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

n = int(input())
edge = defaultdict(list)
for _ in range(n - 1):
    u, v, w = map(int, input().split())
    u -= 1
    v -= 1
    edge[u].append((v, w))
    edge[v].append((u, w))

ans = 0
Parents = [-1 for _ in range(n)]
visited = set([0])
Que = deque([0])
Topo = []
while Que:
    curr = Que.pop()
    Topo.append(curr)
    for nex, _ in edge[curr]:
        if nex in visited:
            continue
        visited.add(nex)
        Parents[nex] = curr
        Que.append(nex)

Size = [1 for _ in range(n)]
for curr in Topo[::-1]:
    for nex, w in edge[curr]:
        if nex == Parents[curr]:
            continue
        ans += Size[nex] * (n - Size[nex]) * w
        Size[curr] += Size[nex]
print(2 * ans)
0