結果
問題 | No.160 最短経路のうち辞書順最小 |
ユーザー | Tsuneo Yoshioka |
提出日時 | 2015-03-02 00:27:08 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,031 bytes |
コンパイル時間 | 50 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 22,684 KB |
最終ジャッジ日時 | 2024-06-24 00:52:30 |
合計ジャッジ時間 | 27,242 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
12,416 KB |
testcase_01 | AC | 85 ms
12,160 KB |
testcase_02 | AC | 85 ms
12,160 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2,153 ms
15,872 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2,099 ms
16,768 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
N, M, S, G = gets.split.map(&:to_i) INF=99999 ma = Array.new(N).map{Array.new(N,INF)} ro = Array.new(N).map{Array.new(N,[INF])} (0...M).each{|m| a, b, c = gets.split.map(&:to_i) ma[a][b]=c ro[a][b]=[a] ma[b][a]=c ro[b][a]=[b] } (0...N).each{|i| (0...N).each{|j| (0...N).each{|k| =begin if i==5 && j==6 then puts puts "ma[#{i}][#{j}]=#{ma[i][j]}, ro[#{i}][#{j}]=#{ro[i][j].join(' ')}" puts "ma[#{i}][#{k}]=#{ma[i][k]}, ro[#{i}][#{k}]=#{ro[i][k].join(' ')}" puts "ma[#{k}][#{j}]=#{ma[k][j]}, ro[#{k}][#{j}]=#{ro[k][j].join(' ')}" end =end if (ma[i][k] + ma[k][j] < ma[i][j]) || (ma[i][j]==ma[i][k] + ma[k][j] && (ro[i][k]+ro[k][j]).join("")<ro[i][j].join("")) then ma[i][j] = ma[i][k]+ma[k][j] ro[i][j] = ro[i][k]+ro[k][j] end } } } puts ro[S][G].join(" ") + " " + G.to_s