結果
問題 | No.872 All Tree Path |
ユーザー | ttr |
提出日時 | 2020-02-04 12:28:21 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 947 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 82,040 KB |
実行使用メモリ | 125,680 KB |
最終ジャッジ日時 | 2024-09-20 07:03:41 |
合計ジャッジ時間 | 8,770 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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) s = 10**6 q = deque() q.append(0) rnk = [-1]*N rnk[0] = 0 while q: temp = q.popleft() v = temp//s r = temp%s for e in E[v]: if rnk[e//m] >= 0: continue rnk[e//m] = r+1 q.append(e//m*s+r+1) h = [] num = [1]*N for i in range(N): if len(E[i]) == 1: heapq.heappush(h, -rnk[i]*s+i) used = [0]*N used[0] = 1 while h: temp = heapq.heappop(h) v = temp%s used[v] = 1 for e in E[v]: if used[e//m] == 0: num[e//m] += num[v] heapq.heappush(h, -rnk[e//m]*s+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)