結果

問題 No.872 All Tree Path
ユーザー anagohirameanagohirame
提出日時 2019-08-30 23:14:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 941 ms / 3,000 ms
コード長 399 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 316,620 KB
最終ジャッジ日時 2024-11-22 03:00:15
合計ジャッジ時間 8,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 698 ms
131,620 KB
testcase_01 AC 710 ms
131,244 KB
testcase_02 AC 941 ms
132,004 KB
testcase_03 AC 681 ms
316,620 KB
testcase_04 AC 38 ms
52,760 KB
testcase_05 AC 708 ms
131,160 KB
testcase_06 AC 730 ms
131,480 KB
testcase_07 AC 712 ms
131,500 KB
testcase_08 AC 143 ms
81,956 KB
testcase_09 AC 141 ms
81,716 KB
testcase_10 AC 139 ms
81,712 KB
testcase_11 AC 143 ms
82,120 KB
testcase_12 AC 139 ms
82,292 KB
testcase_13 AC 39 ms
53,240 KB
testcase_14 AC 40 ms
52,584 KB
testcase_15 AC 40 ms
54,068 KB
testcase_16 AC 40 ms
53,948 KB
testcase_17 AC 39 ms
52,928 KB
testcase_18 AC 40 ms
53,484 KB
testcase_19 AC 41 ms
53,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
n = int(input())
adj = [[] for _ in range(n)]
for _ in range(n-1):
	u, v, w = map(int, input().split())
	adj[u-1].append([v-1, w])
	adj[v-1].append([u-1, w])

ans = 0
def dfs(x, parent):
	global ans
	child_num = 1
	for c, w in adj[x]:
		if c == parent:
			continue
		d = dfs(c, x)
		ans += 2*d*(n-d)*w
		child_num += d
	return child_num

dfs(0, -1)
print(ans)
0