結果

問題 No.160 最短経路のうち辞書順最小
ユーザー tnodinotnodino
提出日時 2022-07-24 19:47:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-07-06 14:45:17
合計ジャッジ時間 2,498 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 58 ms
11,520 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 128 ms
13,056 KB
testcase_07 AC 40 ms
11,136 KB
testcase_08 AC 42 ms
11,136 KB
testcase_09 AC 39 ms
11,008 KB
testcase_10 AC 42 ms
11,264 KB
testcase_11 AC 45 ms
11,264 KB
testcase_12 AC 42 ms
11,136 KB
testcase_13 AC 40 ms
11,136 KB
testcase_14 AC 41 ms
11,264 KB
testcase_15 AC 40 ms
11,136 KB
testcase_16 AC 42 ms
11,136 KB
testcase_17 AC 42 ms
11,264 KB
testcase_18 AC 41 ms
11,136 KB
testcase_19 AC 43 ms
11,264 KB
testcase_20 AC 44 ms
11,136 KB
testcase_21 AC 40 ms
11,136 KB
testcase_22 AC 41 ms
11,136 KB
testcase_23 AC 44 ms
11,264 KB
testcase_24 AC 45 ms
11,392 KB
testcase_25 AC 41 ms
11,136 KB
testcase_26 AC 40 ms
11,136 KB
testcase_27 AC 31 ms
11,008 KB
testcase_28 AC 124 ms
14,208 KB
testcase_29 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
INF = 1<<64
N,M,S,T = map(int,input().split())
G = [[] for _ in range(N)]
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()
cost = [INF] * N
cost[T] = 0
Queue = deque()
Queue.append(T)
while Queue:
    pos = Queue.popleft()
    for nxt,c in G[pos]:
        if cost[pos] + c < cost[nxt]:
            cost[nxt] = cost[pos] + c
            Queue.append(nxt)
pos = S
ans = [S]
while pos != T:
    for nxt,c in G[pos]:
        if cost[pos] - c == cost[nxt]:
            ans.append(nxt)
            pos = nxt
            break
print(*ans)
0