結果
問題 | No.807 umg tours |
ユーザー | rlangevin |
提出日時 | 2023-02-11 12:45:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,358 bytes |
コンパイル時間 | 377 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 109,844 KB |
最終ジャッジ日時 | 2024-07-08 02:39:04 |
合計ジャッジ時間 | 11,359 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 45 ms
55,860 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 44 ms
55,556 KB |
testcase_05 | WA | - |
testcase_06 | AC | 56 ms
65,092 KB |
testcase_07 | WA | - |
testcase_08 | AC | 40 ms
53,732 KB |
testcase_09 | AC | 40 ms
53,584 KB |
testcase_10 | AC | 41 ms
53,964 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 647 ms
104,140 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 423 ms
99,592 KB |
testcase_21 | AC | 481 ms
104,208 KB |
testcase_22 | AC | 268 ms
88,840 KB |
testcase_23 | AC | 253 ms
86,956 KB |
testcase_24 | AC | 360 ms
107,068 KB |
testcase_25 | WA | - |
ソースコード
import sys readline = sys.stdin.readline from heapq import heappush, heappop inf = float('inf') def dijkstra(s, g, N): # ゴールがない場合はg=-1とする。 def cost(v, m): return v * N + m dist = [inf] * N dist2 = [inf] * N mindist = [inf] * N seen = [False] * N Q = [cost(0, s)] while Q: c, m = divmod(heappop(Q), N) if seen[m]: continue seen[m] = True dist[m] = c for v, _ in G[m]: dist2[v] = min(dist2[v], dist[m]) # print("test", m, v, dist2[v]) if m == g: return dist #------heapをアップデートする。-------- for u, C in G[m]: dist2[u] = min(dist2[u], dist2[m] + C) if seen[u]: continue newdist = dist[m] + C #------------------------------------ if newdist >= mindist[u]: continue mindist[u] = newdist heappush(Q, cost(newdist, u)) return dist, dist2 N, M = map(int, input().split()) G = [[] for i in range(N)] for i in range(M): a, b, c, = map(int, input().split()) a, b = a - 1, b - 1 G[a].append((b, c)) G[b].append((a, c)) D1, D2 = dijkstra(0, -1, N) for i in range(N): print(D1[i] + min(D1[i], D2[i]))