結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
52,608 KB
testcase_01 AC 52 ms
52,352 KB
testcase_02 AC 52 ms
52,864 KB
testcase_03 AC 52 ms
52,736 KB
testcase_04 AC 117 ms
76,416 KB
testcase_05 AC 129 ms
77,056 KB
testcase_06 AC 125 ms
77,056 KB
testcase_07 AC 104 ms
73,088 KB
testcase_08 AC 97 ms
72,448 KB
testcase_09 AC 96 ms
70,912 KB
testcase_10 AC 98 ms
72,320 KB
testcase_11 AC 99 ms
73,344 KB
testcase_12 AC 103 ms
72,960 KB
testcase_13 AC 99 ms
71,168 KB
testcase_14 AC 98 ms
71,552 KB
testcase_15 AC 97 ms
71,680 KB
testcase_16 AC 98 ms
72,064 KB
testcase_17 AC 96 ms
71,552 KB
testcase_18 AC 99 ms
71,936 KB
testcase_19 AC 99 ms
71,936 KB
testcase_20 AC 101 ms
72,960 KB
testcase_21 AC 101 ms
72,704 KB
testcase_22 AC 97 ms
71,552 KB
testcase_23 AC 102 ms
72,832 KB
testcase_24 AC 102 ms
72,832 KB
testcase_25 AC 100 ms
73,088 KB
testcase_26 AC 98 ms
71,808 KB
testcase_27 AC 60 ms
54,912 KB
testcase_28 AC 123 ms
76,928 KB
testcase_29 AC 53 ms
54,144 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