結果

問題 No.160 最短経路のうち辞書順最小
ユーザー noriocnorioc
提出日時 2024-07-18 23:28:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 77,492 KB
最終ジャッジ日時 2024-07-18 23:28:55
合計ジャッジ時間 3,875 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,232 KB
testcase_01 AC 40 ms
54,448 KB
testcase_02 AC 38 ms
53,876 KB
testcase_03 AC 39 ms
54,480 KB
testcase_04 AC 77 ms
77,080 KB
testcase_05 AC 79 ms
77,272 KB
testcase_06 AC 89 ms
77,492 KB
testcase_07 AC 79 ms
76,992 KB
testcase_08 AC 87 ms
77,136 KB
testcase_09 AC 80 ms
76,528 KB
testcase_10 AC 70 ms
74,544 KB
testcase_11 AC 74 ms
74,608 KB
testcase_12 AC 75 ms
77,008 KB
testcase_13 AC 81 ms
76,896 KB
testcase_14 AC 70 ms
74,300 KB
testcase_15 AC 74 ms
74,240 KB
testcase_16 AC 78 ms
76,828 KB
testcase_17 AC 76 ms
76,768 KB
testcase_18 AC 80 ms
76,784 KB
testcase_19 AC 79 ms
76,888 KB
testcase_20 AC 78 ms
76,988 KB
testcase_21 AC 73 ms
74,224 KB
testcase_22 AC 80 ms
73,916 KB
testcase_23 AC 80 ms
77,076 KB
testcase_24 AC 79 ms
76,852 KB
testcase_25 AC 78 ms
76,636 KB
testcase_26 AC 76 ms
76,720 KB
testcase_27 AC 45 ms
55,880 KB
testcase_28 AC 88 ms
77,200 KB
testcase_29 AC 42 ms
56,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

INF = 1 << 60
N, M, S, G = map(int, input().split())
adj = defaultdict(list)
for _ in range(M):
    a, b, c = map(int, input().split())
    adj[a].append((b, c))
    adj[b].append((a, c))

dists = [INF] * N
q = deque([(0, G)])  # ゴールから探索する
while q:
    d, v = q.popleft()
    if dists[v] <= d: continue
    dists[v] = d

    for to, cost in adj[v]:
        if dists[to] <= d + cost: continue
        q.append((d+cost, to))

# 経路復元
path = [S]  # スタート地点から復元
while (v := path[-1]) != G:
    nv = INF  # 次の頂点
    for to, cost in adj[v]:
        if dists[to]+cost == dists[v]:
            nv = min(nv, to)

    assert nv != INF
    path.append(nv)

print(*path)
0