結果

問題 No.160 最短経路のうち辞書順最小
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-02 00:05:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,158 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 75,932 KB
最終ジャッジ日時 2024-06-24 00:45:20
合計ジャッジ時間 10,372 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 80 ms
12,416 KB
testcase_04 AC 338 ms
25,344 KB
testcase_05 AC 589 ms
29,440 KB
testcase_06 AC 830 ms
35,328 KB
testcase_07 AC 217 ms
19,328 KB
testcase_08 AC 231 ms
19,968 KB
testcase_09 AC 194 ms
18,304 KB
testcase_10 AC 256 ms
21,120 KB
testcase_11 AC 262 ms
21,504 KB
testcase_12 AC 222 ms
19,584 KB
testcase_13 AC 208 ms
19,200 KB
testcase_14 AC 225 ms
19,200 KB
testcase_15 AC 211 ms
18,816 KB
testcase_16 AC 212 ms
18,688 KB
testcase_17 AC 223 ms
19,584 KB
testcase_18 AC 222 ms
19,200 KB
testcase_19 AC 222 ms
19,456 KB
testcase_20 AC 219 ms
19,456 KB
testcase_21 AC 197 ms
18,560 KB
testcase_22 AC 205 ms
18,688 KB
testcase_23 AC 238 ms
20,224 KB
testcase_24 AC 262 ms
21,632 KB
testcase_25 AC 217 ms
18,944 KB
testcase_26 AC 210 ms
18,816 KB
testcase_27 AC 126 ms
13,568 KB
testcase_28 AC 2,158 ms
75,932 KB
testcase_29 AC 109 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

z=10**9
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]
  # o+=[[a,b,c],[b,a,c]]
}
d=[z]*n
d[t]=0
n.times{
  o.map{|a,b,c|
    d[a]=[d[a],c+d[b]].min
  }
}
print u=s
(
  print' ',u=o.map{|a,b,c|
    u!=a||d[a]<c+d[b]?n:b
  }.min
)while u!=t
0