結果

問題 No.872 All Tree Path
ユーザー FromBooskaFromBooska
提出日時 2023-08-30 21:25:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,136 ms / 3,000 ms
コード長 1,002 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 432,520 KB
最終ジャッジ日時 2024-06-10 20:51:39
合計ジャッジ時間 11,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 937 ms
206,600 KB
testcase_01 AC 907 ms
207,272 KB
testcase_02 AC 933 ms
207,368 KB
testcase_03 AC 1,136 ms
432,520 KB
testcase_04 AC 34 ms
54,012 KB
testcase_05 AC 1,084 ms
208,196 KB
testcase_06 AC 909 ms
206,400 KB
testcase_07 AC 917 ms
207,640 KB
testcase_08 AC 156 ms
91,060 KB
testcase_09 AC 154 ms
91,056 KB
testcase_10 AC 160 ms
90,972 KB
testcase_11 AC 152 ms
91,372 KB
testcase_12 AC 165 ms
90,844 KB
testcase_13 AC 36 ms
52,600 KB
testcase_14 AC 32 ms
52,256 KB
testcase_15 AC 34 ms
53,676 KB
testcase_16 AC 32 ms
53,084 KB
testcase_17 AC 32 ms
52,952 KB
testcase_18 AC 33 ms
53,688 KB
testcase_19 AC 32 ms
53,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
edge_list = []
edge_dic = {}
edges = [[] for i in range(N+1)]
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))
    edge_dic[(u, v)] = w
    edge_dic[(v, u)] = w

child = [0]*(N+1)
visited = [0]*(N+1)

import sys
sys.setrecursionlimit(10**7)

def dfs(current):
    visited[current] = 1
    child[current] += 1
    
    for nxt in edges[current]:
        if visited[nxt] == 0:
            dfs(nxt)
            child[current] += child[nxt]

for i in range(1, N+1):
    if len(edges[i]) == 1:
        root = i
        break
            
dfs(root)
#print(child)

def dfs2(current, prev):
    global ans
    for nxt in edges[current]:
        if nxt != prev:
            #print('current', current, 'nxt', nxt, child[nxt], (N-child[nxt]), edge_dic[(current, nxt)])
            ans += child[nxt]*(N-child[nxt])*edge_dic[(current, nxt)]
            dfs2(nxt, current)

ans = 0
dfs2(root, 0)
print(ans*2)
0