結果

問題 No.160 最短経路のうち辞書順最小
ユーザー ckawatakckawatak
提出日時 2017-10-24 17:21:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 872 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-11-21 17:47:01
合計ジャッジ時間 4,441 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
66,688 KB
testcase_01 AC 63 ms
66,816 KB
testcase_02 AC 64 ms
66,944 KB
testcase_03 AC 65 ms
67,072 KB
testcase_04 AC 128 ms
79,744 KB
testcase_05 AC 141 ms
79,616 KB
testcase_06 AC 158 ms
79,392 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 115 ms
79,104 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 117 ms
78,848 KB
testcase_20 AC 118 ms
78,848 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 81 ms
75,520 KB
testcase_28 WA -
testcase_29 AC 79 ms
73,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from queue import PriorityQueue

N,M,S,G = list(map(int, input().split(' ')))

C = []
for i in range(N):
    C.append([-1 for _ in range(N)])

for i in range(M):
    f,t,c = list(map(int, input().split(' ')))
    C[f][t] = c
    C[t][f] = c

D = []
for i in range(N):
    D.append(float('inf'))
D[S] = 0

P = []
for i in range(N):
    P.append(-1)

Q = PriorityQueue()
Q.put((0, S))

while not Q.empty():
    d, f = Q.get()
    if D[f] < d:
        continue
    for t, c in enumerate(C[f]):
        if c != -1:
            nc = D[f] + c 
            if nc < D[t]:
                D[t] = nc
                P[t] = f
                Q.put((D[t], t))
            elif nc == D[t]:
                P[t] = min(P[t], f)

s = S
t = G                
solution = []
while s != t:
    solution.insert(0, str(t))
    t = P[t]
solution.insert(0, str(S))

print(' '.join(solution))    
0