結果

問題 No.872 All Tree Path
ユーザー 👑 rin204rin204
提出日時 2022-01-19 00:21:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 836 ms / 3,000 ms
コード長 515 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 294,400 KB
最終ジャッジ日時 2024-11-23 13:38:32
合計ジャッジ時間 8,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 597 ms
111,104 KB
testcase_01 AC 602 ms
110,976 KB
testcase_02 AC 836 ms
111,744 KB
testcase_03 AC 676 ms
294,400 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 583 ms
110,828 KB
testcase_06 AC 648 ms
111,232 KB
testcase_07 AC 610 ms
110,848 KB
testcase_08 AC 138 ms
80,028 KB
testcase_09 AC 141 ms
80,256 KB
testcase_10 AC 135 ms
80,256 KB
testcase_11 AC 147 ms
80,512 KB
testcase_12 AC 139 ms
80,000 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 41 ms
52,352 KB
testcase_16 AC 40 ms
52,224 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 42 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)

n = int(input())
edges = [[] for _ in range(n)]
for _ in range(n - 1):
    u, v, w = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append((v, w))
    edges[v].append((u, w))
    
child = [1] * n
ans = 0
def dfs(pos, bpos):
    global ans
    for npos, w in edges[pos]:
        if npos == bpos:
            continue
        dfs(npos, pos)
        ans += child[npos] * (n - child[npos]) * w
        child[pos] += child[npos]
        
dfs(0, -1)
print(ans * 2)
0