結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | gigurururu |
提出日時 | 2015-03-02 01:18:54 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-06-24 00:54:35 |
合計ジャッジ時間 | 45,215 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
12,288 KB |
testcase_01 | AC | 86 ms
12,288 KB |
testcase_02 | AC | 87 ms
12,160 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1,420 ms
12,800 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 1,742 ms
13,056 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 1,662 ms
12,544 KB |
testcase_28 | AC | 1,436 ms
13,056 KB |
testcase_29 | AC | 1,674 ms
12,544 KB |
コンパイルメッセージ
Syntax OK
ソースコード
def g;gets.split.map(&:to_i)end N,M,S,G=g L=(0...N).map{[1e9]*N} d=L.map{[]} N.times{|i|L[i][i]=0} M.times{ a,b,c=g L[a][b]=L[b][a]=c d[a][b]=d[b][a]=1 } N.times{|k|N.times{|i|N.times{|j|L[i][j]=[L[i][j],L[i][k]+L[k][j]].min}}} ans=[s=S] while s!=G ans<<s=(0...N).find{|i|(L[s][i]+L[i][G]==L[s][G])&&d[s][i]==1} end puts ans*" "