結果

問題 No.160 最短経路のうち辞書順最小
ユーザー gigurururugigurururu
提出日時 2015-03-03 12:19:02
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,298 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 39,424 KB
最終ジャッジ日時 2024-06-08 01:24:18
合計ジャッジ時間 5,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,288 KB
testcase_01 AC 84 ms
12,288 KB
testcase_02 AC 158 ms
12,160 KB
testcase_03 AC 93 ms
12,160 KB
testcase_04 AC 115 ms
12,288 KB
testcase_05 AC 173 ms
13,568 KB
testcase_06 AC 162 ms
13,568 KB
testcase_07 AC 103 ms
13,184 KB
testcase_08 AC 102 ms
13,056 KB
testcase_09 AC 100 ms
12,928 KB
testcase_10 AC 109 ms
12,928 KB
testcase_11 AC 103 ms
12,800 KB
testcase_12 AC 103 ms
12,672 KB
testcase_13 AC 104 ms
12,928 KB
testcase_14 AC 96 ms
12,544 KB
testcase_15 AC 97 ms
12,800 KB
testcase_16 AC 99 ms
12,928 KB
testcase_17 AC 106 ms
12,928 KB
testcase_18 AC 95 ms
12,416 KB
testcase_19 AC 102 ms
13,312 KB
testcase_20 AC 101 ms
12,800 KB
testcase_21 AC 103 ms
12,800 KB
testcase_22 AC 98 ms
12,800 KB
testcase_23 AC 98 ms
12,672 KB
testcase_24 AC 104 ms
13,056 KB
testcase_25 AC 97 ms
12,416 KB
testcase_26 AC 102 ms
12,928 KB
testcase_27 AC 89 ms
12,288 KB
testcase_28 AC 1,298 ms
39,424 KB
testcase_29 AC 87 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def g;gets.split.map(&:to_i)end
N,M,S,G=g
L=(0...N).map{[]}
M.times{
  a,b,c=g
  L[a][b]=L[b][a]=c
}
q=[[0,[S]],[1e9]]
gn={}
while q[0]
  e,n=q.shift
  next if gn[n[-1]]
  gn[n[-1]]=e
  break if n[-1]==G
  L[n[-1]].each.with_index{|i,j|
    i&&(
      nxt=[i+e,n+[j]]
      q.insert((0...q.size).bsearch{|k|(q[k]<=>nxt)>0},nxt)
    )
  }
end
puts n*" "
0