結果

問題 No.872 All Tree Path
ユーザー FromBooskaFromBooska
提出日時 2023-03-02 08:51:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 3,000 ms
コード長 986 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 290,528 KB
最終ジャッジ日時 2024-09-17 05:43:16
合計ジャッジ時間 7,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 557 ms
129,920 KB
testcase_01 AC 539 ms
129,536 KB
testcase_02 AC 692 ms
130,176 KB
testcase_03 AC 539 ms
290,528 KB
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 498 ms
129,536 KB
testcase_06 AC 529 ms
130,176 KB
testcase_07 AC 516 ms
130,048 KB
testcase_08 AC 107 ms
81,920 KB
testcase_09 AC 107 ms
81,792 KB
testcase_10 AC 105 ms
81,920 KB
testcase_11 AC 113 ms
81,792 KB
testcase_12 AC 109 ms
81,664 KB
testcase_13 AC 31 ms
51,840 KB
testcase_14 AC 31 ms
52,096 KB
testcase_15 AC 33 ms
51,840 KB
testcase_16 AC 32 ms
52,480 KB
testcase_17 AC 32 ms
52,096 KB
testcase_18 AC 33 ms
51,584 KB
testcase_19 AC 33 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 全点対最短距離の和
# グラフならダイクストラ、ワーシャルフロイド、BFS/DFSなどかと思ったが
# 木なので最短距離というか1本道しかない
# ルート・子の数で行けそう
# たとえばある辺の頂点u, v. u側の頂点の数*v側の頂点の数*辺コスト*2の和
# 子の数はDFSで数えるか

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

import sys
sys.setrecursionlimit(10**7)

def dfs(current, previous):
    if child[current] > 0:
        return
    calc = 0
    for nxt in edges[current]:
        if nxt != previous:
            dfs(nxt, current)
            calc += child[nxt]
    child[current] = calc + 1

child = [-1]*(N+1)
root = 1
dfs(root, 0)

ans = 0
for u, v, w in edge_list:
    mn = min(child[u], child[v])
    ans += mn*(N-mn)*w*2
print(ans)

0