結果

問題 No.872 All Tree Path
ユーザー lloyzlloyz
提出日時 2022-07-07 22:09:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 651 ms / 3,000 ms
コード長 754 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 174,352 KB
最終ジャッジ日時 2024-12-25 03:33:23
合計ジャッジ時間 7,290 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 607 ms
174,008 KB
testcase_01 AC 651 ms
173,996 KB
testcase_02 AC 630 ms
174,352 KB
testcase_03 AC 295 ms
171,572 KB
testcase_04 AC 36 ms
55,288 KB
testcase_05 AC 587 ms
174,044 KB
testcase_06 AC 617 ms
173,840 KB
testcase_07 AC 611 ms
174,232 KB
testcase_08 AC 120 ms
83,948 KB
testcase_09 AC 121 ms
85,360 KB
testcase_10 AC 115 ms
85,452 KB
testcase_11 AC 128 ms
85,336 KB
testcase_12 AC 126 ms
85,132 KB
testcase_13 AC 36 ms
54,500 KB
testcase_14 AC 40 ms
54,600 KB
testcase_15 AC 40 ms
54,720 KB
testcase_16 AC 41 ms
54,692 KB
testcase_17 AC 39 ms
54,684 KB
testcase_18 AC 36 ms
54,796 KB
testcase_19 AC 35 ms
55,236 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