結果

問題 No.367 ナイトの転身
ユーザー cielciel
提出日時 2017-10-29 21:31:52
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 501 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 46,592 KB
最終ジャッジ日時 2024-11-22 05:35:19
合計ジャッジ時間 13,571 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
17,664 KB
testcase_01 AC 87 ms
44,752 KB
testcase_02 AC 85 ms
17,280 KB
testcase_03 AC 87 ms
12,032 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 92 ms
12,032 KB
testcase_06 AC 88 ms
12,032 KB
testcase_07 AC 86 ms
11,904 KB
testcase_08 AC 84 ms
11,904 KB
testcase_09 AC 85 ms
12,032 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 372 ms
15,488 KB
testcase_13 AC 492 ms
17,536 KB
testcase_14 AC 1,289 ms
25,472 KB
testcase_15 AC 111 ms
12,160 KB
testcase_16 AC 1,237 ms
25,600 KB
testcase_17 AC 243 ms
13,568 KB
testcase_18 AC 320 ms
14,336 KB
testcase_19 AC 288 ms
14,464 KB
testcase_20 AC 121 ms
12,160 KB
testcase_21 AC 301 ms
14,848 KB
testcase_22 AC 88 ms
11,904 KB
testcase_23 AC 94 ms
12,416 KB
testcase_24 AC 108 ms
12,160 KB
testcase_25 AC 103 ms
12,288 KB
testcase_26 AC 92 ms
46,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:23: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

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.split.map(&:to_i)
g=q=[]
m=$<.map.with_index{|e,y|s=e.chomp;s.each_char.with_index{|c,x|q<<[0,x,y]if c=='S';g=[x,y]if c=='G'}}
d={q[0]=>0}
while !q.empty?
	c,cx,cy=q.shift
	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[z]
				d[z]=d[[c,cx,cy]]+1
				q<<z
				if [nx,ny]==g
					p d[z];exit
				end
			end
		end
	}
end
p -1
0