結果

問題 No.160 最短経路のうち辞書順最小
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-02 00:14:08
言語 Ruby
(3.4.1)
結果
AC  
実行時間 2,392 ms / 5,000 ms
コード長 220 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 76,092 KB
最終ジャッジ日時 2024-12-26 02:54:21
合計ジャッジ時間 11,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
12,160 KB
testcase_01 AC 105 ms
12,160 KB
testcase_02 AC 109 ms
12,032 KB
testcase_03 AC 106 ms
12,160 KB
testcase_04 AC 367 ms
25,088 KB
testcase_05 AC 609 ms
29,056 KB
testcase_06 AC 869 ms
35,328 KB
testcase_07 AC 246 ms
19,072 KB
testcase_08 AC 261 ms
19,840 KB
testcase_09 AC 227 ms
18,432 KB
testcase_10 AC 279 ms
20,864 KB
testcase_11 AC 281 ms
21,376 KB
testcase_12 AC 236 ms
19,328 KB
testcase_13 AC 240 ms
19,072 KB
testcase_14 AC 245 ms
19,200 KB
testcase_15 AC 230 ms
18,688 KB
testcase_16 AC 232 ms
18,688 KB
testcase_17 AC 247 ms
19,456 KB
testcase_18 AC 237 ms
19,072 KB
testcase_19 AC 241 ms
19,456 KB
testcase_20 AC 245 ms
19,328 KB
testcase_21 AC 229 ms
18,432 KB
testcase_22 AC 234 ms
18,560 KB
testcase_23 AC 263 ms
20,096 KB
testcase_24 AC 287 ms
21,504 KB
testcase_25 AC 247 ms
18,816 KB
testcase_26 AC 240 ms
18,816 KB
testcase_27 AC 150 ms
13,440 KB
testcase_28 AC 2,392 ms
76,092 KB
testcase_29 AC 135 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m,s,t=gets.split.map &:to_i
o=[]
m.times{a,b,c=gets.split.map &:to_i;o<<[a,b,c]<<[b,a,c]}
d=[1e9]*n
d[t]=0
n.times{o.map{|a,b,c|x=c+d[b];d[a]>x&&d[a]=x}}
(print s,' ';s=o.map{|a,b,c|s!=a||d[a]<c+d[b]?n:b}.min)while s<n
0