結果

問題 No.872 All Tree Path
ユーザー ningenMeningenMe
提出日時 2019-08-29 23:10:52
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 474 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 135,212 KB
最終ジャッジ日時 2024-11-17 17:27:49
合計ジャッジ時間 8,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 813 ms
132,340 KB
testcase_01 AC 795 ms
132,676 KB
testcase_02 AC 987 ms
133,752 KB
testcase_03 RE -
testcase_04 AC 38 ms
53,780 KB
testcase_05 AC 810 ms
132,752 KB
testcase_06 AC 818 ms
133,496 KB
testcase_07 AC 810 ms
133,004 KB
testcase_08 AC 157 ms
82,240 KB
testcase_09 AC 149 ms
82,332 KB
testcase_10 AC 144 ms
81,828 KB
testcase_11 AC 156 ms
82,384 KB
testcase_12 AC 154 ms
82,540 KB
testcase_13 AC 39 ms
52,376 KB
testcase_14 AC 39 ms
52,084 KB
testcase_15 AC 39 ms
52,616 KB
testcase_16 AC 38 ms
52,060 KB
testcase_17 AC 38 ms
52,816 KB
testcase_18 AC 38 ms
53,256 KB
testcase_19 AC 38 ms
52,972 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