結果

問題 No.367 ナイトの転身
ユーザー cielciel
提出日時 2017-10-29 21:56:29
言語 Crystal
(1.11.2)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 11,973 ms
コンパイル使用メモリ 297,972 KB
実行使用メモリ 28,052 KB
最終ジャッジ日時 2024-06-30 19:11:46
合計ジャッジ時間 13,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 132 ms
16,736 KB
testcase_11 AC 234 ms
28,052 KB
testcase_12 AC 13 ms
6,944 KB
testcase_13 AC 19 ms
6,944 KB
testcase_14 AC 51 ms
9,116 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 49 ms
9,284 KB
testcase_17 AC 9 ms
6,940 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 10 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 11 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

D=[[{-1,-2},{1,-2},{-2,-1},{2,-1},{-2,1},{2,1},{-1,2},{1,2}],[{-1,-1},{-1,1},{1,-1},{1,1}]]
h,w=gets.not_nil!.split.map(&.to_i)
q=[] of Tuple(Int32,Int32,Int32)
g=Tuple(Int32,Int32)
m=[] of String
h.times{|y|s=gets.not_nil!.chomp;s.size.times{|x|s[x]=='S'&&q<<{0,x,y};s[x]=='G'&&(g={x,y})};m<<s}
d={q[0]=>0}
while !q.empty?
	ck=q.shift
	c,cx,cy=ck
	D[c].each{|(dx,dy)|
		nx,ny=cx+dx,cy+dy
		if 0<=nx&&nx<w && 0<=ny&&ny<h
			nc=c^(m[ny][nx]=='R'?1:0)
			z={nc,nx,ny}
			if !d.has_key?(z)
				d[z]=d[ck]+1
				q<<z
				if {nx,ny}==g
					p d[z];exit
				end
			end
		end
	}
end
p -1
0