結果

問題 No.160 最短経路のうち辞書順最小
ユーザー 👑 rin204rin204
提出日時 2022-07-05 16:46:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 77,540 KB
最終ジャッジ日時 2024-12-15 23:46:24
合計ジャッジ時間 3,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,340 KB
testcase_01 AC 43 ms
52,684 KB
testcase_02 AC 44 ms
52,468 KB
testcase_03 AC 45 ms
53,564 KB
testcase_04 AC 93 ms
76,568 KB
testcase_05 AC 104 ms
77,332 KB
testcase_06 AC 103 ms
77,100 KB
testcase_07 AC 84 ms
74,328 KB
testcase_08 AC 84 ms
73,056 KB
testcase_09 AC 78 ms
72,612 KB
testcase_10 AC 81 ms
73,744 KB
testcase_11 AC 83 ms
74,020 KB
testcase_12 AC 84 ms
74,660 KB
testcase_13 AC 79 ms
73,580 KB
testcase_14 AC 79 ms
72,220 KB
testcase_15 AC 79 ms
72,424 KB
testcase_16 AC 81 ms
72,136 KB
testcase_17 AC 82 ms
72,500 KB
testcase_18 AC 81 ms
72,484 KB
testcase_19 AC 78 ms
72,508 KB
testcase_20 AC 83 ms
73,964 KB
testcase_21 AC 82 ms
73,136 KB
testcase_22 AC 81 ms
72,552 KB
testcase_23 AC 84 ms
74,156 KB
testcase_24 AC 83 ms
73,996 KB
testcase_25 AC 83 ms
74,852 KB
testcase_26 AC 81 ms
74,156 KB
testcase_27 AC 52 ms
55,760 KB
testcase_28 AC 100 ms
77,540 KB
testcase_29 AC 48 ms
55,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, m, s, g = map(int, input().split())

edges = [[] for _ in range(n)]
for _ in range(m):
    u, v, c = map(int, input().split())
    edges[u].append((v, c))
    edges[v].append((u, c))

dist = [1 << 30] * n
dist[g] = 0
nex = [-1] * n
hq = [g]
while hq:
    tmp = heappop(hq)
    d = tmp // n
    pos = tmp - d * n
    if dist[pos] < d:
        continue
    for npos, c in edges[pos]:
        tmp = c + d
        if tmp < dist[npos]:
            dist[npos] = tmp
            heappush(hq, tmp * n + npos)
            nex[npos] = pos
        elif tmp == dist[npos] and pos < nex[npos]:
            nex[npos] = pos
ans = []
while s != -1:
    ans.append(s)
    s = nex[s]
print(*ans)
0