結果

問題 No.160 最短経路のうち辞書順最小
ユーザー rlangevinrlangevin
提出日時 2023-08-16 12:33:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 813 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 84,448 KB
最終ジャッジ日時 2024-05-03 20:59:19
合計ジャッジ時間 6,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,248 KB
testcase_01 AC 43 ms
54,072 KB
testcase_02 AC 42 ms
53,676 KB
testcase_03 AC 44 ms
54,644 KB
testcase_04 AC 195 ms
78,060 KB
testcase_05 AC 199 ms
79,840 KB
testcase_06 AC 206 ms
81,520 KB
testcase_07 AC 190 ms
77,456 KB
testcase_08 AC 188 ms
77,888 KB
testcase_09 AC 190 ms
77,416 KB
testcase_10 AC 187 ms
77,124 KB
testcase_11 AC 186 ms
77,944 KB
testcase_12 AC 185 ms
77,324 KB
testcase_13 AC 191 ms
77,504 KB
testcase_14 AC 184 ms
77,348 KB
testcase_15 AC 182 ms
77,432 KB
testcase_16 AC 188 ms
77,484 KB
testcase_17 AC 190 ms
77,296 KB
testcase_18 AC 186 ms
77,644 KB
testcase_19 AC 189 ms
77,460 KB
testcase_20 AC 188 ms
77,288 KB
testcase_21 AC 186 ms
77,344 KB
testcase_22 AC 184 ms
77,232 KB
testcase_23 AC 186 ms
78,056 KB
testcase_24 AC 190 ms
77,472 KB
testcase_25 AC 187 ms
77,232 KB
testcase_26 AC 188 ms
77,104 KB
testcase_27 AC 161 ms
73,436 KB
testcase_28 AC 206 ms
84,448 KB
testcase_29 AC 160 ms
74,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, M, S, G = map(int, input().split())
inf = 10 ** 18
dp = [[inf] * N for i in range(N)]
for i in range(N):
    dp[i][i] = 0

Edge = defaultdict(lambda:inf)
for i in range(M):
    a, b, c = map(int, input().split())
    dp[a][b] = min(dp[a][b], c)
    dp[b][a] = min(dp[b][a], c)
    Edge[(a, b)] = min(Edge[(a, b)], c)
    Edge[(b, a)] = min(Edge[(b, a)], c)

for k in range(N):
    for i in range(N):
        for j in range(N):
            dp[i][j] = min(dp[i][j], dp[i][k] + dp[k][j])

ans = [S]
now = S
cost = dp[now][G]
while now != G:
    for i in range(N):
        if i == now:
            continue
        if dp[now][i] + dp[i][G] == cost and Edge[now, i] == dp[now][i]:
            ans.append(i)
            cost -= dp[now][i]
            now = i
            break

print(*ans)
0