結果

問題 No.872 All Tree Path
ユーザー tamatotamato
提出日時 2020-02-20 22:04:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 780 ms / 3,000 ms
コード長 961 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 164,632 KB
最終ジャッジ日時 2024-10-08 19:17:49
合計ジャッジ時間 9,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 757 ms
158,752 KB
testcase_01 AC 763 ms
159,380 KB
testcase_02 AC 770 ms
159,144 KB
testcase_03 AC 357 ms
164,632 KB
testcase_04 AC 42 ms
53,376 KB
testcase_05 AC 780 ms
159,152 KB
testcase_06 AC 751 ms
161,232 KB
testcase_07 AC 757 ms
164,096 KB
testcase_08 AC 125 ms
82,048 KB
testcase_09 AC 122 ms
82,304 KB
testcase_10 AC 126 ms
82,304 KB
testcase_11 AC 133 ms
82,544 KB
testcase_12 AC 128 ms
82,360 KB
testcase_13 AC 43 ms
53,376 KB
testcase_14 AC 44 ms
53,760 KB
testcase_15 AC 44 ms
53,888 KB
testcase_16 AC 43 ms
53,376 KB
testcase_17 AC 43 ms
53,760 KB
testcase_18 AC 43 ms
53,632 KB
testcase_19 AC 43 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    N = int(input())
    adj = [[] for _ in range(N+1)]
    E = {}
    for _ in range(N-1):
        a, b, w = map(int, input().split())
        adj[a].append(b)
        adj[b].append(a)
        E[a*(N+1)+b] = w
        E[b*(N+1)+a] = w

    que = deque()
    que.append(1)
    seen = [-1] * (N+1)
    seen[1] = 0
    par = [0] * (N+1)
    child = [[] for _ in range(N+1)]
    seq = []
    while que:
        v = que.popleft()
        seq.append(v)
        for u in adj[v]:
            if seen[u] == -1:
                seen[u] = seen[v] + 1
                par[u] = v
                child[v].append(u)
                que.append(u)
    seq.reverse()

    dp = [1] * (N+1)
    ans = 0
    for v in seq:
        for u in child[v]:
            dp[v] += dp[u]
            ans += E[v*(N+1)+u] * dp[u] * (N-dp[u]) * 2
    print(ans)


if __name__ == '__main__':
    main()
0