結果

問題 No.85 TVザッピング(1)
ユーザー suppy193suppy193
提出日時 2016-10-27 14:09:00
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 934 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-11-24 04:54:56
合計ジャッジ時間 23,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
32,256 KB
testcase_01 AC 83 ms
32,256 KB
testcase_02 AC 90 ms
13,696 KB
testcase_03 AC 88 ms
12,416 KB
testcase_04 RE -
testcase_05 TLE -
testcase_06 AC 126 ms
33,792 KB
testcase_07 AC 89 ms
13,184 KB
testcase_08 AC 744 ms
27,520 KB
testcase_09 AC 83 ms
12,288 KB
testcase_10 WA -
testcase_11 AC 83 ms
12,032 KB
testcase_12 AC 83 ms
12,288 KB
testcase_13 AC 84 ms
12,416 KB
testcase_14 AC 83 ms
12,288 KB
testcase_15 AC 82 ms
12,032 KB
testcase_16 AC 83 ms
12,416 KB
testcase_17 AC 84 ms
12,416 KB
testcase_18 AC 85 ms
12,416 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 86 ms
12,160 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 TLE -
testcase_25 AC 85 ms
12,416 KB
testcase_26 AC 87 ms
12,672 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:23: warning: assigned but unused variable - ch
Syntax OK

ソースコード

diff #

input = gets.strip.split(' ').map(&:to_i)
@n = input[0]
@m = input[1]
@c = input[2]

@remocon = []
(1..@n * @m).each do |i|
	@remocon << i
end

x = (@c - 1) % @m + 1
y = (@c - 1) / @m + 1
#print "#{@c} : #{x},#{y}\n"
#x = 1
#y = 3
#p x + (y - 1) * @m

def dfs(pos, path)
	#p pos
	#p path
	x = pos[0]
	y = pos[1]
	ch = x + (y - 1) * @m
	[[1, 0], [0, -1], [-1, 0], [0, 1]].each do |dir|
		dx = dir[0]
		dy = dir[1]
		next_x = x + dx
		next_y = y + dy
		next if next_x < 1 || next_x > @m || next_y < 1 || next_y > @n
		next_pos = [next_x, next_y]
		next_ch = next_x + (next_y - 1) * @m
		#print "#{pos} -> #{next_pos}\n"
		#print "#{ch} -> #{next_ch}\n"
		#next if path.include?(next_pos)
		next if path.include?(next_ch)
		#p path
		#path << next_pos
		#p path + [next_ch]
		if (path + [next_ch]).length == @n * @m
			puts "YES"
			exit
		end
		dfs(next_pos, path + [next_ch])
		
	end
	
end

path = []
dfs([x, y], path.clone)
puts "NO"
0