結果

問題 No.160 最短経路のうち辞書順最小
ユーザー rlangevinrlangevin
提出日時 2023-08-16 12:35:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 815 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,684 KB
最終ジャッジ日時 2024-11-25 01:26:35
合計ジャッジ時間 5,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,632 KB
testcase_01 AC 38 ms
54,896 KB
testcase_02 AC 40 ms
54,104 KB
testcase_03 AC 38 ms
55,464 KB
testcase_04 AC 174 ms
77,968 KB
testcase_05 AC 184 ms
79,820 KB
testcase_06 AC 189 ms
81,728 KB
testcase_07 AC 167 ms
77,284 KB
testcase_08 AC 165 ms
77,588 KB
testcase_09 AC 173 ms
77,368 KB
testcase_10 AC 166 ms
77,632 KB
testcase_11 AC 174 ms
77,464 KB
testcase_12 AC 168 ms
77,304 KB
testcase_13 AC 171 ms
77,484 KB
testcase_14 AC 167 ms
77,624 KB
testcase_15 AC 172 ms
77,496 KB
testcase_16 AC 174 ms
77,284 KB
testcase_17 AC 172 ms
77,340 KB
testcase_18 AC 167 ms
77,336 KB
testcase_19 AC 172 ms
77,596 KB
testcase_20 AC 170 ms
77,512 KB
testcase_21 AC 170 ms
77,556 KB
testcase_22 AC 167 ms
77,824 KB
testcase_23 AC 173 ms
77,560 KB
testcase_24 AC 171 ms
78,116 KB
testcase_25 AC 167 ms
77,504 KB
testcase_26 AC 173 ms
77,716 KB
testcase_27 AC 144 ms
74,096 KB
testcase_28 AC 185 ms
84,684 KB
testcase_29 AC 146 ms
74,348 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