結果

問題 No.872 All Tree Path
ユーザー ningenMeningenMe
提出日時 2019-08-29 23:47:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 775 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 122,496 KB
最終ジャッジ日時 2024-11-17 17:29:51
合計ジャッジ時間 30,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 2,200 ms
122,496 KB
testcase_04 AC 31 ms
11,264 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 273 ms
20,992 KB
testcase_09 AC 280 ms
20,992 KB
testcase_10 AC 288 ms
21,120 KB
testcase_11 AC 277 ms
21,120 KB
testcase_12 AC 271 ms
21,120 KB
testcase_13 AC 31 ms
11,136 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 32 ms
11,136 KB
testcase_16 AC 35 ms
11,008 KB
testcase_17 AC 35 ms
11,136 KB
testcase_18 AC 32 ms
11,008 KB
testcase_19 AC 31 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue
N = int(input())
edge = [[] for i in range(N)]
size = [1 for i in range(N)]
depth = [[-1,i] for i in range(N)]
parent = [-1 for i in range(N)]
dist = [0 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])

q = queue.Queue()
q.put(0)
depth[0] = [0,0]
while q.qsize() > 0:
    f = q.get()
    for t,w in edge[f]:
        if depth[t][0] == -1:
            depth[t][0] = depth[f][0] + 1
            dist[t] = dist[f] + w
            parent[t] = f
            q.put(t)
depth.sort(reverse=True)
ans = 0
for tmp,i in depth:
    if parent[i] != -1:
        M = size[i]
        size[parent[i]] += M
        d = dist[i] - dist[parent[i]]
        ans += 2*M*(N-M)*d
print(ans)
0