結果

問題 No.872 All Tree Path
ユーザー irumo8202irumo8202
提出日時 2022-01-31 10:43:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,485 ms / 3,000 ms
コード長 520 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 122,112 KB
最終ジャッジ日時 2024-06-11 08:45:35
合計ジャッジ時間 15,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,465 ms
68,992 KB
testcase_01 AC 1,485 ms
68,992 KB
testcase_02 AC 1,463 ms
69,120 KB
testcase_03 AC 1,188 ms
122,112 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 1,439 ms
69,120 KB
testcase_06 AC 1,477 ms
68,992 KB
testcase_07 AC 1,458 ms
69,120 KB
testcase_08 AC 161 ms
16,512 KB
testcase_09 AC 159 ms
16,512 KB
testcase_10 AC 158 ms
16,512 KB
testcase_11 AC 161 ms
16,512 KB
testcase_12 AC 164 ms
16,512 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 33 ms
10,624 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)

N = int(input())

G = [dict() for _ in range(N)]

for _ in range(N - 1):
    u, v, w = map(int, input().split())
    u -= 1
    v -= 1
    G[u][v] = w
    G[v][u] = w

p = -1
ans = 0


def dfs(v, pre=-1):
    global p, ans
    p += 1
    v_in = p
    for nx in G[v].keys():
        if nx == pre:
            continue
        dfs(nx, v)
    p += 1
    v_out = p
    if pre != -1:
        ans += (size := (v_out - v_in) // 2 + 1) * (N - size) * 2 * G[v][pre]


dfs(0)
print(ans)
0