結果

問題 No.872 All Tree Path
ユーザー 👑 KazunKazun
提出日時 2020-11-13 03:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 3,000 ms
コード長 784 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 137,288 KB
最終ジャッジ日時 2024-07-22 19:50:49
合計ジャッジ時間 6,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
136,712 KB
testcase_01 AC 531 ms
136,716 KB
testcase_02 AC 532 ms
136,948 KB
testcase_03 AC 253 ms
136,720 KB
testcase_04 AC 39 ms
53,888 KB
testcase_05 AC 522 ms
134,928 KB
testcase_06 AC 514 ms
137,288 KB
testcase_07 AC 529 ms
136,712 KB
testcase_08 AC 105 ms
80,896 KB
testcase_09 AC 102 ms
81,024 KB
testcase_10 AC 106 ms
80,840 KB
testcase_11 AC 104 ms
81,280 KB
testcase_12 AC 105 ms
80,512 KB
testcase_13 AC 41 ms
53,888 KB
testcase_14 AC 40 ms
53,632 KB
testcase_15 AC 41 ms
53,632 KB
testcase_16 AC 41 ms
53,632 KB
testcase_17 AC 42 ms
54,144 KB
testcase_18 AC 40 ms
53,504 KB
testcase_19 AC 41 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
input=sys.stdin.readline

N=int(input())
E=[[] for _ in range(N+1)]

Edge=[0]*(N-1)
for i in range(N-1):
    u,v,w=map(int,input().split())
    E[u].append(v)
    E[v].append(u)

    Edge[i]=(u,v,w)

root=1
Depth=[-1]*(N+1)
Depth[root]=0
Parent=[-1]*(N+1)
Parent[root]=0
Q=deque([root])

F=[[] for _ in range(N)]
F[0]=[root]
while Q:
    v=Q.popleft()

    for u in E[v]:
        if Depth[u]==-1:
            Depth[u]=Depth[v]+1
            Parent[u]=v
            Q.append(u)
            F[Depth[u]].append(u)

Descend=[1]*(N+1)

for G in F[::-1]:
    for x in G:
        if x!=root:
            Descend[Parent[x]]+=Descend[x]

X=0
for (u,v,w) in Edge:
    if Depth[u]>Depth[v]:
        u,v=v,u

    X+=w*Descend[v]*(N-Descend[v])
print(2*X)
0