結果

問題 No.160 最短経路のうち辞書順最小
ユーザー gigurururugigurururu
提出日時 2015-03-04 23:21:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 663 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 123,088 KB
最終ジャッジ日時 2024-06-24 07:33:35
合計ジャッジ時間 4,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,668 KB
testcase_01 AC 48 ms
53,584 KB
testcase_02 AC 45 ms
52,584 KB
testcase_03 AC 49 ms
54,616 KB
testcase_04 AC 91 ms
77,280 KB
testcase_05 AC 102 ms
77,588 KB
testcase_06 AC 105 ms
77,784 KB
testcase_07 AC 111 ms
76,732 KB
testcase_08 AC 108 ms
76,912 KB
testcase_09 AC 101 ms
77,304 KB
testcase_10 AC 112 ms
77,632 KB
testcase_11 AC 112 ms
77,288 KB
testcase_12 AC 108 ms
77,108 KB
testcase_13 AC 111 ms
77,080 KB
testcase_14 AC 102 ms
76,908 KB
testcase_15 AC 105 ms
77,192 KB
testcase_16 AC 103 ms
77,140 KB
testcase_17 AC 115 ms
77,420 KB
testcase_18 AC 106 ms
77,008 KB
testcase_19 AC 108 ms
76,976 KB
testcase_20 AC 104 ms
77,048 KB
testcase_21 AC 112 ms
76,836 KB
testcase_22 AC 107 ms
77,348 KB
testcase_23 AC 104 ms
77,148 KB
testcase_24 AC 110 ms
77,268 KB
testcase_25 AC 102 ms
77,068 KB
testcase_26 AC 111 ms
76,896 KB
testcase_27 AC 60 ms
69,052 KB
testcase_28 AC 663 ms
123,088 KB
testcase_29 AC 46 ms
56,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M,S,G=map(int,input().split())
L=[[] for _ in range(N)]
for _ in range(M):
    a,b,c=map(int,input().split())
    L[a].append([b,c])
    L[b].append([a,c])
q=[[0,[S]],[1e9,[]]]
d={}
while True:
    e,n=heapq.heappop(q)
    t=n[-1]
    if t not in d:
        d[t]=True
        if t==G: break
        for j,i in L[t]: heapq.heappush(q,[i+e,n+[j]])
print(" ".join(map(str,n)))
0