結果

問題 No.872 All Tree Path
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-09 09:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 3,000 ms
コード長 607 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 178,400 KB
最終ジャッジ日時 2024-07-21 07:23:08
合計ジャッジ時間 9,222 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 750 ms
178,400 KB
testcase_01 AC 729 ms
176,092 KB
testcase_02 AC 739 ms
176,220 KB
testcase_03 AC 444 ms
164,472 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 764 ms
168,364 KB
testcase_06 AC 755 ms
178,176 KB
testcase_07 AC 759 ms
176,136 KB
testcase_08 AC 111 ms
83,632 KB
testcase_09 AC 108 ms
83,200 KB
testcase_10 AC 110 ms
83,456 KB
testcase_11 AC 113 ms
84,480 KB
testcase_12 AC 112 ms
83,584 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 39 ms
51,968 KB
testcase_15 AC 41 ms
52,224 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

s = []
visit = [-1]*n
s.append(0)
order = []
par = [-1]*n
while s:
    v = s.pop()
    order.append(v)
    for u in g[v]:
        if u == par[v]:
            continue
        par[u] = v
        s.append(u)

ans = 0
c = [1]*n
order.reverse()
for v in order:
    if par[v] != -1:
        ans += (n-c[v])*c[v]*d[(v, par[v])]
        c[par[v]] += c[v]
print(ans*2)
0