結果
問題 | No.872 All Tree Path |
ユーザー | ttr |
提出日時 | 2020-02-04 12:17:36 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 943 bytes |
コンパイル時間 | 343 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 197,176 KB |
最終ジャッジ日時 | 2024-09-20 07:03:27 |
合計ジャッジ時間 | 9,336 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)] m = 10**3 for _ in range(N-1): u,v,w = map(int, input().split()) E[u-1].append((v-1)*m+w) E[v-1].append((u-1)*m+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//m] >= 0: continue rnk[e//m] = r+1 q.append((e//m, 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//m] == 0: num[e//m] += num[v] heapq.heappush(h, (-rnk[e//m], e//m)) ans = 0 for i in range(N): for e in E[i]: n = min(num[i], num[e//m]) ans += n*(N-n)*(e%m) print(ans)