結果

問題 No.872 All Tree Path
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-07 19:46:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,230 ms / 3,000 ms
コード長 614 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 82,776 KB
最終ジャッジ日時 2024-07-04 12:43:58
合計ジャッジ時間 11,866 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,182 ms
78,464 KB
testcase_01 AC 1,230 ms
78,336 KB
testcase_02 AC 1,223 ms
78,080 KB
testcase_03 AC 750 ms
82,776 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 1,174 ms
78,336 KB
testcase_06 AC 1,199 ms
78,208 KB
testcase_07 AC 1,191 ms
78,336 KB
testcase_08 AC 109 ms
17,408 KB
testcase_09 AC 106 ms
17,536 KB
testcase_10 AC 105 ms
17,536 KB
testcase_11 AC 105 ms
17,536 KB
testcase_12 AC 106 ms
17,280 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 26 ms
10,496 KB
testcase_16 AC 27 ms
10,624 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 26 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N - 1):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append((b, c))
    G[b].append((a, c))


par = [-1] * N
L = [0] * N
topo = []
q = [0]
while q:
    s = q.pop()
    topo.append(s)
    for t, c in G[s]:
        if t == par[s]:
            continue
        par[t] = s
        L[t] = c
        q.append(t)

size = [1] * N
ans = 0
for v in topo[::-1][:-1]:
    sz = size[v]
    ans += L[v] * sz * (N - sz)
    p = par[v]
    size[p] += sz
print(ans * 2)
0