結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,460 KB
testcase_01 AC 43 ms
55,796 KB
testcase_02 AC 43 ms
54,524 KB
testcase_03 AC 43 ms
54,668 KB
testcase_04 AC 184 ms
77,980 KB
testcase_05 AC 192 ms
80,300 KB
testcase_06 AC 199 ms
81,964 KB
testcase_07 AC 177 ms
77,248 KB
testcase_08 AC 182 ms
77,724 KB
testcase_09 AC 178 ms
77,680 KB
testcase_10 AC 175 ms
77,212 KB
testcase_11 AC 176 ms
77,956 KB
testcase_12 AC 175 ms
77,604 KB
testcase_13 AC 177 ms
77,356 KB
testcase_14 AC 178 ms
77,748 KB
testcase_15 AC 174 ms
77,456 KB
testcase_16 AC 172 ms
77,296 KB
testcase_17 AC 178 ms
77,436 KB
testcase_18 AC 171 ms
77,368 KB
testcase_19 AC 176 ms
77,568 KB
testcase_20 AC 178 ms
78,380 KB
testcase_21 AC 173 ms
77,892 KB
testcase_22 AC 175 ms
77,280 KB
testcase_23 AC 173 ms
77,220 KB
testcase_24 AC 181 ms
77,344 KB
testcase_25 AC 174 ms
77,584 KB
testcase_26 AC 179 ms
77,448 KB
testcase_27 AC 154 ms
73,764 KB
testcase_28 AC 191 ms
84,600 KB
testcase_29 AC 155 ms
74,564 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