結果

問題 No.160 最短経路のうち辞書順最小
ユーザー lloyzlloyz
提出日時 2023-06-27 21:15:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 834 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-07-04 13:47:17
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,528 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 AC 50 ms
54,528 KB
testcase_04 AC 86 ms
76,928 KB
testcase_05 AC 96 ms
77,312 KB
testcase_06 AC 101 ms
77,568 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 86 ms
76,928 KB
testcase_10 WA -
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 AC 97 ms
76,672 KB
testcase_20 AC 77 ms
73,984 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 51 ms
56,832 KB
testcase_28 WA -
testcase_29 AC 49 ms
55,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
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)]
DP[s] = 0
H = [(0, s)]
while H:
    cc, cp = heappop(H)
    if cc > DP[cp]:
        continue
    if cp == g:
        break
    for np, dc in G[cp]:
        nc = cc + dc
        if nc >= DP[np]:
            continue
        DP[np] = nc
        heappush(H, (nc, np))
ANS = [g]
res = DP[g]
while ANS[-1] != s:
    cp = ANS[-1]
    for np, dc in G[cp]:
        nc = res - dc
        if nc == DP[np]:
            ANS.append(np)
            res -= dc
            break
ANS.reverse()
print(*ANS)
0