結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー wotsushiwotsushi
提出日時 2017-04-16 10:47:39
言語 Ruby
(3.3.0)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-19 03:59:27
合計ジャッジ時間 2,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

a = (1..4).map {gets.split.map(&:to_i)}
D = [*0...4].product([*0...4])
def f(x)
  i1, j1 = D.find {|i, j| x[i][j] == 0}
  i2, j2 = D.find {|i, j| x[i][j] == 4 * i1 + j1 + 1} || [-1, -1]
  if (i2 - i1).abs + (j2 - j1).abs != 1
    x
  else
    f((0...4).map {|i|
        (0...4).map {|j|
          if [i, j] == [i1, j1]
            x[i2][j2]
          elsif [i, j] == [i2, j2]
            0
          else
            x[i][j]
          end
        }})
  end
end
ans = if D.all? {|i, j| f(a)[i][j] == (4 * i + j + 1) % 16}
        "Yes"
      else
        "No"
      end
puts ans
0