結果

問題 No.160 最短経路のうち辞書順最小
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-26 23:54:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 817 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-10-02 16:34:30
合計ジャッジ時間 2,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 44 ms
11,648 KB
testcase_05 AC 54 ms
12,160 KB
testcase_06 AC 67 ms
13,056 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
11,008 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 37 ms
11,136 KB
testcase_20 AC 37 ms
11,008 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 32 ms
11,008 KB
testcase_28 WA -
testcase_29 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)
inf = 10**9

N, M, S, G = map(int, input().split())
edge = [[] for _ in range(N)]
for _ in range(M):
    a, b, c = map(int, input().split())
    edge[a].append((b, c))
    edge[b].append((a, c))

dist = [inf] * N
prev = [N] * N
dist[S] = 0
que = [(0, S)]
while que:
    ds, s = heapq.heappop(que)
    if dist[s] < ds:
        continue
    for t, dt in edge[s]:
        if dist[t] > ds + dt:
            dist[t] = ds + dt
            heapq.heappush(que, (ds + dt, t))
            prev[t] = s
        elif dist[t] == ds + dt:
            if prev[t] > s:
                prev[t] = s
                heapq.heappush(que, (ds + dt, t))

ans = []
now = G
while now < N:
    ans.append(now)
    now = prev[now]
ans.reverse()
print(*ans)
0