結果

問題 No.424 立体迷路
ユーザー masashi0217masashi0217
提出日時 2021-03-22 04:34:07
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 1,313 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 11,244 KB
実行使用メモリ 15,612 KB
最終ジャッジ日時 2023-08-14 23:40:30
合計ジャッジ時間 3,508 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h, w = gets.chomp.split(" ").map(&:to_i)
sy, sx, gy, gx = gets.chomp.split(" ").map(&:to_i)
one = [[0,1],[0,-1],[1,0],[-1,0],[0,2],[2,0],[-2,0],[0,-2]]
maze = h.times.map{gets.chomp.split(" ").map(&:to_i)}
st = [[sy-1,sx-1]]
arr = Array.new(h).map{Array.new(w,-1)}
arr[sy-1][sx-1] = 0
ok = false
until st == []
    i,j = st.pop
    one.each do |y,x|
        yy = i + y
        xx = j + x
        next if (i+y < 0 || i+y > h-1) || (j+x < 0 || j+x > w-1)
        next if arr[yy][xx] != -1
        if y.abs == 2 || x.abs == 2
            if maze[yy][xx] == maze[i][j]
                if y.abs == 2
                    yyy = i + (y/2)
                    if maze[yy][xx] > maze[yyy][xx]
                        arr[yy][xx] += 1
                        st << [yy,xx]
                    end
                else
                    xxx = j + (x/2)
                    if maze[yy][xx] > maze[yy][xxx]
                        arr[yy][xx] += 1
                        st << [yy,xx]
                    end
                end
            end
        else
            if (maze[yy][xx] - maze[i][j]).abs <= 1
                arr[yy][xx] += 1
                st << [yy,xx]
            end
        end
    end
    if arr[gy-1][gx-1] == 0
        ok = true
        break
    end
end
if ok
    puts "YES"
else
    puts "NO"
end
0