結果

問題 No.160 最短経路のうち辞書順最小
ユーザー lloyzlloyz
提出日時 2023-06-27 21:40:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 782 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 77,268 KB
最終ジャッジ日時 2024-07-04 14:13:44
合計ジャッジ時間 3,586 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 42 ms
53,888 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 92 ms
77,184 KB
testcase_05 AC 109 ms
77,056 KB
testcase_06 AC 113 ms
77,268 KB
testcase_07 AC 83 ms
76,288 KB
testcase_08 AC 85 ms
76,624 KB
testcase_09 AC 88 ms
76,544 KB
testcase_10 AC 85 ms
76,996 KB
testcase_11 AC 89 ms
76,672 KB
testcase_12 AC 92 ms
76,544 KB
testcase_13 AC 86 ms
76,544 KB
testcase_14 AC 85 ms
76,800 KB
testcase_15 AC 81 ms
74,240 KB
testcase_16 AC 87 ms
76,672 KB
testcase_17 AC 86 ms
76,416 KB
testcase_18 AC 78 ms
74,972 KB
testcase_19 AC 79 ms
74,368 KB
testcase_20 AC 90 ms
76,544 KB
testcase_21 AC 86 ms
76,416 KB
testcase_22 AC 79 ms
74,496 KB
testcase_23 AC 87 ms
76,928 KB
testcase_24 AC 86 ms
77,096 KB
testcase_25 AC 80 ms
74,496 KB
testcase_26 AC 79 ms
74,368 KB
testcase_27 AC 50 ms
56,704 KB
testcase_28 AC 98 ms
76,928 KB
testcase_29 AC 48 ms
55,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from heapq import heapify, heappop, heappush

n, m, s, g = map(int, input().split())
G = defaultdict(list)
for _ in range(m):
    a, b, c = map(int, input().split())
    G[a].append((b, c))
    G[b].append((a, c))
for i in range(n):
    G[i].sort(key=lambda x: x[0])
INF = 10**18
DP = [INF for _ in range(n)]
From = [-1 for _ in range(n)]
DP[g] = 0
H = [(0, g)]
while H:
    cc, cp = heappop(H)
    if cc > DP[cp]:
        continue
    for np, dc in G[cp]:
        nc = cc + dc
        if nc < DP[np]:
            DP[np] = nc
            From[np] = cp
            heappush(H, (nc, np))
        elif nc == DP[np]:
            From[np] = min(From[np], cp)

ANS = [s]
while ANS[-1] != g:
    cp = From[ANS[-1]]
    ANS.append(cp)
print(*ANS)
0