結果
問題 | No.872 All Tree Path |
ユーザー | kept1994 |
提出日時 | 2021-08-31 12:53:02 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,782 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 82,212 KB |
実行使用メモリ | 848,128 KB |
最終ジャッジ日時 | 2024-11-25 07:19:52 |
合計ジャッジ時間 | 20,635 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | AC | 80 ms
52,340 KB |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 91 ms
52,828 KB |
testcase_14 | AC | 39 ms
52,420 KB |
testcase_15 | AC | 40 ms
52,568 KB |
testcase_16 | AC | 41 ms
52,208 KB |
testcase_17 | AC | 43 ms
53,500 KB |
testcase_18 | AC | 43 ms
52,800 KB |
testcase_19 | AC | 39 ms
53,384 KB |
ソースコード
#!/usr/bin/env python3 import sys def main(): sys.setrecursionlimit(10 ** 9) ans = 0 N = int(input()) costs = [[0] * N for _ in range(N)] class DFS(): def __init__(self, N: int) -> None: self.nodes = N # 頂点数 self.G = [[] for _ in range(N)] # グラフ self.seen = [False] * N # 各ノードが訪問済みかどうかのフラグ self.firstOrder = [] # ノードの行きがけ順(0-index) self.lastOrder = [] # ノードの帰りがけ順(0-index) # 辺の追加 def addEdge(self, fromNode: int, toNode: int, bothDirection: bool): self.G[fromNode].append(toNode) if bothDirection: self.G[toNode].append(fromNode) # DFS def build(self, now: int, pre:int): sum = 0 nonlocal ans # ----- ノードに到着した時の処理 self.firstOrder.append(now) self.seen[now] = True # ----- 隣接する各ノードへの移動処理 for next in self.G[now]: if self.seen[next]: continue sum += self.build(next, now) # ----- ノードから戻る時の処理 # self.lastOrder.append(now) sum += 1 ans += sum * (self.nodes - sum) * costs[pre][now] return sum d = DFS(N) for _ in range(N - 1): u, v, w = map(int, input().split()) costs[u - 1][v - 1] = w costs[v - 1][u - 1] = w d.addEdge(u - 1, v - 1, bothDirection=True) d.build(0, -1) print(ans * 2) if __name__ == '__main__': main()