結果

問題 No.872 All Tree Path
ユーザー ttrttr
提出日時 2020-02-04 12:54:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,782 ms / 3,000 ms
コード長 633 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 60,960 KB
最終ジャッジ日時 2024-09-21 07:19:15
合計ジャッジ時間 16,289 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,773 ms
56,192 KB
testcase_01 AC 1,782 ms
56,448 KB
testcase_02 AC 1,767 ms
56,448 KB
testcase_03 AC 1,286 ms
60,960 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 1,748 ms
56,192 KB
testcase_06 AC 1,771 ms
56,192 KB
testcase_07 AC 1,771 ms
56,576 KB
testcase_08 AC 180 ms
15,232 KB
testcase_09 AC 179 ms
15,488 KB
testcase_10 AC 177 ms
15,616 KB
testcase_11 AC 179 ms
15,488 KB
testcase_12 AC 178 ms
15,232 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 32 ms
10,624 KB
testcase_19 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
E = [[] for _ in range(N)]
m = 10**3
for _ in range(N-1):
    u,v,w = map(int, input().split())
    E[u-1].append((v-1)*m+w)
    E[v-1].append((u-1)*m+w)

q = deque()
q.append(0)
used = [0]*N
used[0] = 1
L = [0]
while q:
    v = q.pop()
    for e in E[v]:
        if used[e//m]:
            continue
        used[e//m] = 1
        q.append(e//m)
        L.append(e//m)

ans = 0
num = [1]*N
used = [0]*N
L.reverse()
for v in L:
    used[v] = 1
    for e in E[v]:
        if used[e//m]:
            continue
        ans += num[v]*(N-num[v])*(e%m)
        num[e//m] += num[v]

print(2*ans)
0