結果

問題 No.872 All Tree Path
ユーザー nadarenadare
提出日時 2019-08-30 22:35:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 702 ms / 3,000 ms
コード長 637 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 156,832 KB
最終ジャッジ日時 2024-11-22 01:05:08
合計ジャッジ時間 7,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 701 ms
156,056 KB
testcase_01 AC 698 ms
156,640 KB
testcase_02 AC 695 ms
156,048 KB
testcase_03 AC 397 ms
145,152 KB
testcase_04 AC 43 ms
51,840 KB
testcase_05 AC 702 ms
156,444 KB
testcase_06 AC 683 ms
155,940 KB
testcase_07 AC 697 ms
156,832 KB
testcase_08 AC 153 ms
81,536 KB
testcase_09 AC 157 ms
81,532 KB
testcase_10 AC 151 ms
81,592 KB
testcase_11 AC 155 ms
81,280 KB
testcase_12 AC 154 ms
81,480 KB
testcase_13 AC 43 ms
51,968 KB
testcase_14 AC 44 ms
52,224 KB
testcase_15 AC 44 ms
52,352 KB
testcase_16 AC 44 ms
52,096 KB
testcase_17 AC 43 ms
51,840 KB
testcase_18 AC 43 ms
52,608 KB
testcase_19 AC 44 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def inpl(): return list(map(int, input().split()))

N = int(input())
size = [1]*N
depth = [-1]*N

G = [[] for _ in range(N)]
E = []
for _ in range(N-1):
    a, b, w = inpl()
    a, b = a-1, b-1
    G[a].append(b)
    G[b].append(a)
    E.append([a, b, w])

depth[0] = 0
Q = [0]
Q2 = []

while Q:
    p = Q.pop()
    for q in G[p]:
        if depth[q] != -1:
            continue
        depth[q] = depth[p] + 1
        Q.append(q)
        Q2.append([p, q])

while Q2:
    a, b = Q2.pop()
    size[a] += size[b]

ans = 0

for a, b, w in E:
    if depth[a] < depth[b]:
        a, b = b, a
    ans += w * size[a] * (N-size[a])

print(ans*2)
0