結果

問題 No.160 最短経路のうち辞書順最小
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-01 23:55:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,532 ms / 5,000 ms
コード長 331 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-24 00:44:03
合計ジャッジ時間 40,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,416 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 1,532 ms
12,800 KB
testcase_05 AC 1,524 ms
12,800 KB
testcase_06 AC 1,520 ms
12,800 KB
testcase_07 AC 1,483 ms
12,672 KB
testcase_08 AC 1,479 ms
12,544 KB
testcase_09 AC 1,482 ms
12,800 KB
testcase_10 AC 1,500 ms
12,800 KB
testcase_11 AC 1,501 ms
12,672 KB
testcase_12 AC 1,479 ms
12,672 KB
testcase_13 AC 1,492 ms
12,672 KB
testcase_14 AC 1,494 ms
12,800 KB
testcase_15 AC 1,477 ms
12,672 KB
testcase_16 AC 1,490 ms
12,928 KB
testcase_17 AC 1,473 ms
12,672 KB
testcase_18 AC 1,493 ms
12,800 KB
testcase_19 AC 1,489 ms
12,672 KB
testcase_20 AC 1,499 ms
12,672 KB
testcase_21 AC 1,497 ms
12,800 KB
testcase_22 AC 1,479 ms
12,800 KB
testcase_23 AC 1,504 ms
12,800 KB
testcase_24 AC 1,504 ms
12,928 KB
testcase_25 AC 1,484 ms
12,800 KB
testcase_26 AC 1,511 ms
12,672 KB
testcase_27 AC 1,485 ms
12,416 KB
testcase_28 AC 1,523 ms
12,800 KB
testcase_29 AC 1,520 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m,s,t=gets.split.map &:to_i
z=10**9
d=(1..n).map{[z]*n}
e=(1..n).map{[z]*n}
m.times{
  u,v,c=gets.split.map &:to_i
  d[u][v]=d[v][u]=e[u][v]=e[v][u]=c
}
n.times{|w|n.times{|u|n.times{|v|
  d[u][u]=0
  d[u][v]=[d[u][v],d[u][w]+d[w][v]].min
}}}
print u=s
(
  print' ',u=(0...n).find{|v|
    d[u][t]==e[u][v]+d[v][t]
  }
)while u!=t
0