結果

問題 No.424 立体迷路
ユーザー urutomurutom
提出日時 2017-04-17 17:20:14
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-19 05:30:59
合計ジャッジ時間 3,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

h,w=gets.split.map(&:to_i)
sx,sy,gx,gy=gets.split.map{|s|s.to_i-1}
maze=h.times.map{gets.chomp.bytes.to_a}

init_state=[sx,sy]
q=[init_state]
visited={}

until q.empty?
	curr_state=q.shift
	next if visited[curr_state]
	visited[curr_state]=true
	if curr_state==[gx,gy]
		puts "YES"
		exit
	end
	height=maze.dig(*curr_state)
	x,y=curr_state
	[
		[[[1,0],[0,1],[-1,0],[0,-1]],1],
		[[[2,0],[0,2],[-2,0],[0,-2]],0]
	].each{|directions,threshold|
		directions.each{|dx,dy|
			nx,ny=x+dx,y+dy
			next unless (0...h)===nx
			next unless (0...w)===ny
			next_state=[nx,ny]
			next unless (maze.dig(*next_state)-height).abs<=threshold
			q.push next_state
		}
	}
end

puts "NO"
0