結果

問題 No.157 2つの空洞
ユーザー horiesinitihoriesiniti
提出日時 2018-03-17 09:07:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 54 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-06 03:43:46
合計ジャッジ時間 2,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,032 KB
testcase_01 AC 91 ms
12,032 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 AC 91 ms
12,288 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 92 ms
12,032 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 93 ms
12,032 KB
testcase_08 AC 92 ms
12,160 KB
testcase_09 AC 91 ms
12,032 KB
testcase_10 AC 91 ms
12,032 KB
testcase_11 AC 91 ms
12,288 KB
testcase_12 AC 90 ms
12,288 KB
testcase_13 AC 92 ms
12,032 KB
testcase_14 AC 90 ms
12,032 KB
testcase_15 AC 92 ms
12,032 KB
testcase_16 AC 94 ms
12,032 KB
testcase_17 AC 96 ms
12,160 KB
testcase_18 AC 91 ms
12,288 KB
testcase_19 AC 91 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(x,y,w,h,no)
	dx=[1,0,-1,0]
	dy=[0,1,0,-1]
	$map[y][x]=no.to_s
	$hs[no]<<[y,x]
	4.times{|i|
		x1=x+dx[i]
		y1=y+dy[i]
		if x1<0 || x1>=w || y1<0 || y1>=h || $map[y1][x1]!="."
			next
		end
		f(x1,y1,w,h,no)
	}
end
w,h=gets.split.map{|e| e.to_i}
$map=STDIN.read.split
$hs=[[],[]]
no=0
h.times{|y|
	w.times{|x|
		if $map[y][x]=="."
			f(x,y,w,h,no)
			no+=1
		end
	}
}
ans=10000
$hs[0].each{|e1|
	$hs[1].each{|e2|
		d=(e1[0]-e2[0]).abs+(e1[1]-e2[1]).abs-1
		
		ans=[ans,d].min
	}
}
puts ans
0