結果
問題 | No.807 umg tours |
ユーザー | cmy |
提出日時 | 2022-05-23 19:16:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 829 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 243,832 KB |
最終ジャッジ日時 | 2024-09-20 13:20:36 |
合計ジャッジ時間 | 14,567 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 93 ms
70,528 KB |
testcase_01 | AC | 77 ms
68,864 KB |
testcase_02 | AC | 113 ms
76,636 KB |
testcase_03 | AC | 96 ms
76,416 KB |
testcase_04 | WA | - |
testcase_05 | AC | 84 ms
71,552 KB |
testcase_06 | AC | 102 ms
76,416 KB |
testcase_07 | AC | 101 ms
76,672 KB |
testcase_08 | AC | 41 ms
53,120 KB |
testcase_09 | AC | 52 ms
60,288 KB |
testcase_10 | AC | 52 ms
61,568 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | WA | - |
testcase_15 | AC | 1,172 ms
113,764 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import heapq import sys input = sys.stdin.readline n, m = map(int, input().split()) e = [[] for _ in range(n)] for _ in range(m): ai, bi, ci = map(int, input().split()) e[ai-1].append((bi-1, ci)) e[bi-1].append((ai-1, ci)) q = [(0, 0)] c1 = [None] * n while q: c, x = heapq.heappop(q) if c1[x] is not None: continue c1[x] = c for y, cn in e[x]: if c1[y] is not None: continue heapq.heappush(q, (c+cn, y)) q = [(0, 0, 0)] c2 = [float("inf")] * n while q: c, cut, x = heapq.heappop(q) c2[x] = min(c2[x], c) for y, cn in e[x]: if c2[y] < float("inf"): continue if cn > cut: heapq.heappush(q, (c+cut, cn, y)) else: heapq.heappush(q, (c+cn, cut, y)) for i in range(n): print(c1[i] + c2[i])