結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー kura07kura07
提出日時 2016-01-03 21:42:48
言語 Ruby
(3.4.1)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 543 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-12-26 16:35:53
合計ジャッジ時間 3,507 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
11,904 KB
testcase_01 AC 110 ms
12,032 KB
testcase_02 AC 111 ms
12,032 KB
testcase_03 AC 105 ms
12,032 KB
testcase_04 AC 106 ms
12,160 KB
testcase_05 AC 107 ms
11,904 KB
testcase_06 AC 106 ms
12,032 KB
testcase_07 AC 109 ms
12,032 KB
testcase_08 AC 109 ms
12,032 KB
testcase_09 AC 107 ms
12,160 KB
testcase_10 AC 108 ms
12,032 KB
testcase_11 AC 110 ms
12,032 KB
testcase_12 AC 109 ms
12,160 KB
testcase_13 AC 108 ms
12,032 KB
testcase_14 AC 111 ms
12,032 KB
testcase_15 AC 107 ms
11,904 KB
testcase_16 AC 107 ms
11,904 KB
testcase_17 AC 104 ms
12,032 KB
testcase_18 AC 110 ms
12,032 KB
testcase_19 AC 109 ms
12,032 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