結果

問題 No.179 塗り分け
ユーザー horiesinitihoriesiniti
提出日時 2018-03-31 06:47:35
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 692 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,364 KB
最終ジャッジ日時 2024-06-26 01:15:29
合計ジャッジ時間 6,831 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
19,364 KB
testcase_01 AC 97 ms
12,288 KB
testcase_02 AC 116 ms
12,032 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 95 ms
12,288 KB
testcase_05 AC 462 ms
12,672 KB
testcase_06 AC 96 ms
12,160 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 99 ms
12,160 KB
testcase_11 AC 97 ms
12,288 KB
testcase_12 TLE -
testcase_13 AC 109 ms
12,928 KB
testcase_14 AC 103 ms
12,672 KB
testcase_15 AC 93 ms
12,416 KB
testcase_16 AC 92 ms
12,160 KB
testcase_17 AC 91 ms
12,288 KB
testcase_18 AC 175 ms
13,184 KB
testcase_19 AC 173 ms
13,056 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(m,dx,dy,h,w)
	i=0
	arr=Array.new(h+2).map{Array.new(w+2,0)}
	c=0
	m.each{|e|
		j=0
		e.chars{|e2|
			if e2=="#"
				arr[i][j]=1
				c+=1
			else
				arr[i][j]=0
			end
			j+=1
		}
		i+=1
	}
	return false if c==0
	h.times{|y|
		w.times{|x|
			y1=y+dy
			x1=x+dx
			if arr[y][x]==1
				return false if x1<0 || x1>=w || y1<0 || y1>=h
				arr[y1][x1]-=1
				c-=2
			end
			next if x1<0 || x1>=w || y1<0 || y1>=h
			return false if arr[y1][x1]<0
		}
	}
	return c==0
end

h,w=gets.split.map{|e| e.to_i}
m=[]
h.times{
	m<<gets.chomp
}



ok=false
h.times{|dy|
	w.times{|dx|
		if dy+dx!=0
			ok=ok||f(m,dx,dy,h,w)
			ok=ok||f(m,-dx,dy,h,w)
		end
	}
}
if ok==true
	puts "YES"
else
	puts "NO"
end
0