結果

問題 No.872 All Tree Path
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-17 23:14:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 793 ms / 3,000 ms
コード長 649 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 151,552 KB
最終ジャッジ日時 2024-09-15 21:54:37
合計ジャッジ時間 8,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 739 ms
151,296 KB
testcase_01 AC 772 ms
151,424 KB
testcase_02 AC 747 ms
151,552 KB
testcase_03 AC 327 ms
150,164 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 760 ms
151,296 KB
testcase_06 AC 754 ms
151,440 KB
testcase_07 AC 793 ms
151,176 KB
testcase_08 AC 141 ms
83,084 KB
testcase_09 AC 140 ms
83,072 KB
testcase_10 AC 127 ms
83,328 KB
testcase_11 AC 137 ms
83,136 KB
testcase_12 AC 134 ms
83,200 KB
testcase_13 AC 42 ms
53,632 KB
testcase_14 AC 41 ms
53,632 KB
testcase_15 AC 42 ms
53,376 KB
testcase_16 AC 43 ms
53,376 KB
testcase_17 AC 43 ms
53,504 KB
testcase_18 AC 42 ms
53,504 KB
testcase_19 AC 42 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

ans = 0
par = [-1]*n
vis = [0]*n
vis[0] = 1
q = deque([0])
topo = []
while q:
    now = q.pop()
    topo.append(now)
    for nex,_ in e[now]:
        if vis[nex]:
            continue
        vis[nex] = 1
        par[nex] = now
        q.append(nex)


size = [1]*n
for now in topo[::-1]:
    for nex,w in e[now]:
        if nex == par[now]:
            continue
        ans += size[nex]*(n-size[nex])*w
        size[now] += size[nex]
    
print(ans*2)
0