結果

問題 No.872 All Tree Path
ユーザー ningenMeningenMe
提出日時 2019-08-29 23:10:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 474 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-11-17 17:28:29
合計ジャッジ時間 18,535 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,203 ms
77,056 KB
testcase_01 AC 2,221 ms
77,056 KB
testcase_02 AC 2,204 ms
77,056 KB
testcase_03 RE -
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 2,205 ms
76,928 KB
testcase_06 AC 2,205 ms
77,056 KB
testcase_07 AC 2,220 ms
77,184 KB
testcase_08 AC 158 ms
17,536 KB
testcase_09 AC 153 ms
17,536 KB
testcase_10 AC 155 ms
17,536 KB
testcase_11 AC 154 ms
17,536 KB
testcase_12 AC 153 ms
17,408 KB
testcase_13 AC 24 ms
10,752 KB
testcase_14 AC 24 ms
10,752 KB
testcase_15 AC 24 ms
10,752 KB
testcase_16 AC 23 ms
10,752 KB
testcase_17 AC 24 ms
10,752 KB
testcase_18 AC 23 ms
10,880 KB
testcase_19 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
edge = [[] for i in range(N)]
size = [1 for i in range(N)]
for i in range(N-1):
    u,v,w = map(int,input().split())
    u-=1
    v-=1
    edge[u].append([v,w])
    edge[v].append([u,w])

def dfs(f,p):
    for t,w in edge[f]:
        if t == p:
            continue
        dfs(t,f)
    if p != -1:
        size[p] += size[f]

dfs(0,-1)
ans = 0
for i in range(N):
    for j,w in edge[i]:
        M = min(size[i],size[j])
        ans += M*(N-M)*w
print(ans)
0