結果

問題 No.872 All Tree Path
ユーザー ああいいああいい
提出日時 2021-12-05 14:32:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,457 ms / 3,000 ms
コード長 716 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 64,128 KB
最終ジャッジ日時 2024-07-07 07:50:35
合計ジャッジ時間 14,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,440 ms
50,304 KB
testcase_01 AC 1,411 ms
50,304 KB
testcase_02 AC 1,384 ms
50,304 KB
testcase_03 AC 1,198 ms
64,128 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 1,411 ms
50,304 KB
testcase_06 AC 1,427 ms
50,304 KB
testcase_07 AC 1,457 ms
50,432 KB
testcase_08 AC 157 ms
14,720 KB
testcase_09 AC 147 ms
14,720 KB
testcase_10 AC 143 ms
14,720 KB
testcase_11 AC 157 ms
14,848 KB
testcase_12 AC 145 ms
14,848 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
u = [0] * (N-1)
v = [0] * (N-1)
w = [0] * (N-1)
for i in range(N-1):
    u[i],v[i],w[i] = list(map(int,input().split()))
    
tree = [[] for _ in range(N+1)]
for i in range(N-1):
    tree[u[i]].append(v[i])
    tree[v[i]].append(u[i])
ko = [0] * (N+1)
q = []
q.append((1,0))
while len(q):
    now,parent = q.pop()
    if ko[now] == 0:
        ko[now] = 1
        q.append((now,parent))
        for i in tree[now]:
            if i != parent:
                q.append((i,now))
    else:
        for i in tree[now]:
            if i != parent:
                ko[now] += ko[i]
s = 0
for i in range(N-1):
    m = min(ko[u[i]],ko[v[i]])
    M = N - m
    s += m * M * w[i]
print(s * 2)
                
0