結果

問題 No.160 最短経路のうち辞書順最小
ユーザー qibqib
提出日時 2022-12-14 18:47:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 799 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-11-08 10:33:26
合計ジャッジ時間 3,937 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,864 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 100 ms
76,928 KB
testcase_05 AC 110 ms
77,184 KB
testcase_06 AC 123 ms
77,056 KB
testcase_07 AC 99 ms
71,552 KB
testcase_08 AC 86 ms
72,832 KB
testcase_09 AC 90 ms
74,240 KB
testcase_10 AC 83 ms
71,936 KB
testcase_11 AC 85 ms
73,216 KB
testcase_12 AC 90 ms
74,624 KB
testcase_13 AC 87 ms
72,960 KB
testcase_14 AC 82 ms
71,552 KB
testcase_15 AC 81 ms
71,424 KB
testcase_16 AC 101 ms
73,216 KB
testcase_17 AC 83 ms
71,936 KB
testcase_18 AC 85 ms
72,064 KB
testcase_19 AC 87 ms
72,960 KB
testcase_20 AC 91 ms
73,856 KB
testcase_21 AC 81 ms
71,040 KB
testcase_22 AC 82 ms
71,168 KB
testcase_23 AC 89 ms
73,472 KB
testcase_24 AC 95 ms
74,368 KB
testcase_25 AC 95 ms
72,064 KB
testcase_26 AC 84 ms
71,552 KB
testcase_27 AC 50 ms
55,424 KB
testcase_28 AC 102 ms
77,440 KB
testcase_29 AC 46 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

INF = 1 << 60

n, m, src, dst = map(int, input().split())
g = [[] for _ in range(n)]
for _ in range(m):
  a, b, c = map(int, input().split())
  g[a].append((b, c))
  g[b].append((a, c))

for u in range(n):
  g[u].sort(key=lambda x: x[0])

dist = [INF for _ in range(n)]
dist[dst] = 0
hp = [(dist[dst], dst)]
par = [None for _ in range(n)]
while len(hp) > 0:
  cd, cur = heapq.heappop(hp)
  if cd > dist[cur]:
    continue
  for nxt, c in g[cur]:
    if dist[cur] + c < dist[nxt]:
      par[nxt] = cur
      dist[nxt] = dist[cur] + c
      heapq.heappush(hp, (dist[nxt], nxt))

cur = src
ans = []
while True:
  ans.append(str(cur))
  if cur == dst:
    break
  nxt = None
  for v, c in g[cur]:
    if dist[v] + c == dist[cur]:
      nxt = v
      break
  cur = nxt

print(' '.join(ans))
0