結果
問題 | No.872 All Tree Path |
ユーザー | ttr |
提出日時 | 2020-02-04 12:10:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 930 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 99,648 KB |
最終ジャッジ日時 | 2024-09-20 07:01:15 |
合計ジャッジ時間 | 8,889 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import sys input = sys.stdin.buffer.readline from collections import deque import heapq N = int(input()) E = [[] for _ in range(N)] for _ in range(N-1): u,v,w = map(int, input().split()) E[u-1].append((v-1, w)) E[v-1].append((u-1, w)) q = deque() q.append((0, 0)) rnk = [-1]*N rnk[0] = 0 while q: temp = q.pop() v = temp[0] r = temp[1] for e in E[v]: if rnk[e[0]] >= 0: continue rnk[e[0]] = r+1 q.append((e[0], r+1)) h = [] num = [1]*N for i in range(N): if len(E[i]) == 1: heapq.heappush(h, (-rnk[i], i)) used = [0]*N used[0] = 1 while h: temp = heapq.heappop(h) v = temp[1] used[v] = 1 for e in E[v]: if used[e[0]] == 0: num[e[0]] += num[v] heapq.heappush(h, (-rnk[e[0]], e[0])) ans = 0 for i in range(N): for e in E[i]: n = min(num[i], num[e[0]]) ans += n*(N-n)*e[1] print(ans)