結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー code-devocode-devo
提出日時 2016-01-21 11:08:11
言語 Ruby
(3.3.0)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 769 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-08 02:03:17
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,416 KB
testcase_01 AC 72 ms
12,288 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 80 ms
12,416 KB
testcase_04 AC 73 ms
12,288 KB
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 73 ms
12,160 KB
testcase_07 AC 80 ms
12,416 KB
testcase_08 AC 73 ms
12,160 KB
testcase_09 AC 78 ms
12,288 KB
testcase_10 AC 75 ms
12,288 KB
testcase_11 AC 77 ms
12,416 KB
testcase_12 AC 79 ms
12,288 KB
testcase_13 AC 80 ms
12,416 KB
testcase_14 AC 80 ms
12,160 KB
testcase_15 AC 80 ms
12,416 KB
testcase_16 AC 80 ms
12,288 KB
testcase_17 AC 78 ms
12,544 KB
testcase_18 AC 80 ms
12,160 KB
testcase_19 AC 79 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# うーん・・・

T = $stdin.read.lines.map{|s| s.split.map(&:to_i)}
W, H = T[0].size, T.size

OFFSETS = [[-1, 0], [+1, 0], [0, -1], [0, +1]]

def check(map, x, y, a)
  return true if map == T

  OFFSETS.each do |ox, oy|
    new_x = x + ox
    new_y = y + oy
    if 0 <= new_x && new_x < W && 0 <= new_y && new_y < H then
      n = map[new_y][new_x]
      unless a[n] then
        new_map = map.map{|r| r.dup}
        new_map[y][x] = n
        new_map[new_y][new_x] = 0
        new_a = a.dup
        new_a[n] = true
        return true if check(new_map, new_x, new_y, new_a)
      end
    end
  end

  return false
end

map = Array.new(H){|i| Array.new(W){|j| i * H + j + 1}}
x, y = W - 1, H - 1
map[y][x] = 0
puts check(map, x, y, Array.new(W * H)) ? "Yes" : "No"
0