結果
問題 | No.807 umg tours |
ユーザー | convexineq |
提出日時 | 2021-04-06 08:48:03 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 814 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 164,916 KB |
最終ジャッジ日時 | 2024-06-10 19:39:08 |
合計ジャッジ時間 | 16,689 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 60 ms
64,512 KB |
testcase_07 | WA | - |
testcase_08 | AC | 42 ms
52,608 KB |
testcase_09 | AC | 43 ms
53,376 KB |
testcase_10 | AC | 45 ms
54,016 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 619 ms
151,956 KB |
testcase_25 | WA | - |
ソースコード
from heapq import * def dijkstra(g,start): n = len(g) INF = 1<<61 dist = [INF]*(n) #startからの最短距離 dist[start] = dist[start+n//2] = 0 q = [(0,start)] #(そこまでの距離、点) while q: dv,v = heappop(q) if dist[v] < dv: continue for to, cost in g[v]: if dv + cost < dist[to]: dist[to] = dv + cost heappush(q, (dist[to], to)) return dist n,m = map(int,input().split()) g = [[] for _ in range(2*n)] for _ in range(m): a,b,c = map(int,input().split()) a -= 1 b -= 1 g[a].append((b,c)) g[a].append((b+n,0)) g[b].append((a,c)) g[b].append((b+n,0)) g[a+n].append((b+n,c)) g[b+n].append((a+n,c)) dist = dijkstra(g,0) for i in range(n): print(dist[i] + dist[i+n])