結果
問題 | No.807 umg tours |
ユーザー | 👑 rin204 |
提出日時 | 2022-04-17 15:43:26 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,658 ms / 4,000 ms |
コード長 | 714 bytes |
コンパイル時間 | 535 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 151,300 KB |
最終ジャッジ日時 | 2024-12-26 09:17:09 |
合計ジャッジ時間 | 25,243 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
61,568 KB |
testcase_01 | AC | 61 ms
62,336 KB |
testcase_02 | AC | 67 ms
64,512 KB |
testcase_03 | AC | 66 ms
63,872 KB |
testcase_04 | AC | 59 ms
60,800 KB |
testcase_05 | AC | 60 ms
60,288 KB |
testcase_06 | AC | 73 ms
64,512 KB |
testcase_07 | AC | 68 ms
63,488 KB |
testcase_08 | AC | 41 ms
52,224 KB |
testcase_09 | AC | 50 ms
52,864 KB |
testcase_10 | AC | 46 ms
53,120 KB |
testcase_11 | AC | 1,122 ms
113,176 KB |
testcase_12 | AC | 1,508 ms
118,300 KB |
testcase_13 | AC | 1,885 ms
127,824 KB |
testcase_14 | AC | 914 ms
101,884 KB |
testcase_15 | AC | 628 ms
94,240 KB |
testcase_16 | AC | 1,796 ms
129,652 KB |
testcase_17 | AC | 2,512 ms
144,688 KB |
testcase_18 | AC | 2,464 ms
144,416 KB |
testcase_19 | AC | 2,172 ms
139,708 KB |
testcase_20 | AC | 1,042 ms
114,228 KB |
testcase_21 | AC | 1,139 ms
117,072 KB |
testcase_22 | AC | 510 ms
91,776 KB |
testcase_23 | AC | 461 ms
88,680 KB |
testcase_24 | AC | 1,259 ms
145,304 KB |
testcase_25 | AC | 2,658 ms
151,300 KB |
ソースコード
from heapq import * n, m = map(int, input().split()) edges = [[] for _ in range(n)] for _ in range(m): a, b, c = map(int, input().split()) a -= 1 b -= 1 edges[a].append((b, c)) edges[b].append((a, c)) inf = 1 << 60 dist = [[inf] * 2 for _ in range(n)] dist[0][0] = 0 dist[0][1] = 0 hq = [(0, 0, 0)] while hq: d, pos, t = heappop(hq) if d > dist[pos][t]: continue for npos, c in edges[pos]: if dist[npos][t] > d + c: dist[npos][t] = d + c heappush(hq, (d + c, npos, t)) if t == 0: if dist[npos][1] > d : dist[npos][1] = d heappush(hq, (d, npos, 1)) for d1, d2 in dist: print(d1 + d2)