結果
問題 | No.807 umg tours |
ユーザー | cmy |
提出日時 | 2022-05-23 21:29:06 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 597 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 199,620 KB |
最終ジャッジ日時 | 2024-09-20 13:21:41 |
合計ジャッジ時間 | 7,499 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 74 ms
72,960 KB |
testcase_01 | AC | 78 ms
73,984 KB |
testcase_02 | AC | 99 ms
76,544 KB |
testcase_03 | AC | 95 ms
76,672 KB |
testcase_04 | AC | 67 ms
69,504 KB |
testcase_05 | AC | 80 ms
74,624 KB |
testcase_06 | AC | 103 ms
76,672 KB |
testcase_07 | AC | 101 ms
76,672 KB |
testcase_08 | AC | 45 ms
58,736 KB |
testcase_09 | AC | 53 ms
62,720 KB |
testcase_10 | AC | 56 ms
64,000 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
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, 0)] cost = [[None, None] for _ in range(n)] cost[0][1] = 0 while q: c, used, x = heapq.heappop(q) if cost[x][used] is not None: continue cost[x][used] = c for y, cn in e[x]: heapq.heappush(q, (c+cn, used, y)) if not used: heapq.heappush(q, (c, 1, y)) for i in range(n): print(sum(cost[i]))