結果

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

テストケース

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

ソースコード

diff #

a = readlines.map{|s| s.split.map &:to_i }
goal = (1..16).each_slice(4).map{|a| a.map{|n| n%16 } }
moved = {}

loop{
	(puts 'Yes'; exit) if a == goal
	zero_y = a.index{|r| r.include? 0 }
	zero_x = a[zero_y].index(0)
	n = zero_y*4 + zero_x + 1
	(puts 'No'; exit) if moved[n]
	[[zero_y-1,zero_x],[zero_y+1,zero_x],[zero_y,zero_x-1],[zero_y,zero_x+1]].each{|y,x|
		next unless (0...4) === y && (0...4) === x
		if a[y][x] == n
			a[zero_y][zero_x], a[y][x] = n, 0
			moved[n] = true
			break
		end
	}
	(puts 'No'; exit) if a[zero_y][zero_x] == 0
}
0