結果

問題 No.872 All Tree Path
ユーザー AT274_AT274_
提出日時 2019-10-14 14:42:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 741 ms / 3,000 ms
コード長 799 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 178,312 KB
最終ジャッジ日時 2024-06-06 08:47:50
合計ジャッジ時間 8,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 741 ms
178,312 KB
testcase_01 AC 739 ms
177,904 KB
testcase_02 AC 732 ms
178,040 KB
testcase_03 AC 386 ms
177,124 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 707 ms
177,796 KB
testcase_06 AC 729 ms
178,092 KB
testcase_07 AC 707 ms
177,936 KB
testcase_08 AC 142 ms
85,120 KB
testcase_09 AC 136 ms
85,376 KB
testcase_10 AC 139 ms
85,120 KB
testcase_11 AC 141 ms
85,116 KB
testcase_12 AC 139 ms
85,888 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 37 ms
52,608 KB
testcase_15 AC 37 ms
52,736 KB
testcase_16 AC 37 ms
52,352 KB
testcase_17 AC 38 ms
52,608 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# nadare様のコード参考
# https://yukicoder.me/submissions/374115

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

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


depth[0] = 0
visited = [False] * N
stack = [0]
rev_follow = []
while stack:
    n = stack.pop()
    visited[n] = True

    for to, w in G[n]:
        if visited[to]:
            continue

        stack.append(to)
        depth[to] = depth[n] + 1
        rev_follow.append([n, to])

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

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

print(ans)
0