結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 44 ms
54,016 KB
testcase_04 AC 196 ms
78,080 KB
testcase_05 AC 200 ms
79,744 KB
testcase_06 AC 206 ms
81,324 KB
testcase_07 AC 180 ms
77,496 KB
testcase_08 AC 184 ms
77,192 KB
testcase_09 AC 185 ms
77,436 KB
testcase_10 AC 186 ms
77,440 KB
testcase_11 AC 188 ms
77,824 KB
testcase_12 AC 185 ms
77,440 KB
testcase_13 AC 188 ms
77,568 KB
testcase_14 AC 185 ms
77,440 KB
testcase_15 AC 182 ms
77,440 KB
testcase_16 AC 189 ms
77,440 KB
testcase_17 AC 188 ms
77,576 KB
testcase_18 AC 187 ms
78,156 KB
testcase_19 AC 189 ms
77,440 KB
testcase_20 AC 183 ms
77,440 KB
testcase_21 AC 180 ms
77,396 KB
testcase_22 AC 177 ms
77,404 KB
testcase_23 AC 179 ms
77,440 KB
testcase_24 AC 190 ms
77,592 KB
testcase_25 AC 186 ms
77,624 KB
testcase_26 AC 188 ms
77,492 KB
testcase_27 AC 161 ms
72,576 KB
testcase_28 AC 206 ms
84,352 KB
testcase_29 AC 161 ms
73,728 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