結果

問題 No.872 All Tree Path
ユーザー maspymaspy
提出日時 2020-01-29 09:58:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,149 ms / 3,000 ms
コード長 718 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 103,692 KB
最終ジャッジ日時 2024-09-15 20:13:09
合計ジャッジ時間 11,636 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,133 ms
103,692 KB
testcase_01 AC 1,122 ms
103,568 KB
testcase_02 AC 1,116 ms
103,572 KB
testcase_03 AC 688 ms
103,440 KB
testcase_04 AC 30 ms
10,368 KB
testcase_05 AC 1,141 ms
102,972 KB
testcase_06 AC 1,149 ms
102,984 KB
testcase_07 AC 1,130 ms
102,736 KB
testcase_08 AC 100 ms
19,628 KB
testcase_09 AC 103 ms
19,876 KB
testcase_10 AC 103 ms
19,576 KB
testcase_11 AC 100 ms
19,756 KB
testcase_12 AC 107 ms
19,624 KB
testcase_13 AC 29 ms
10,496 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,368 KB
testcase_16 AC 29 ms
10,496 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 AC 30 ms
10,368 KB
testcase_19 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N = int(readline())
m = map(int,read().split())
UVW = zip(m,m,m)

graph = [[] for _ in range(N+1)]
for u,v,w in UVW:
    graph[u].append((v,w))
    graph[v].append((u,w))

root = 1
parent = [0] * (N+1)
length = [0] * (N+1)
order = []
stack = [root]
while stack:
    x = stack.pop()
    order.append(x)
    for y,d in graph[x]:
        if y == parent[x]:
            continue
        parent[y] = x
        length[y] = d
        stack.append(y)

size = [1] * (N+1)
for v in order[::-1]:
    p = parent[v]
    size[p] += size[v]

answer = 2 * sum(d * x * (N-x) for d,x in zip(length, size))
print(answer)
0