結果

問題 No.179 塗り分け
ユーザー horiesinitihoriesiniti
提出日時 2018-03-31 07:08:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,287 ms / 3,000 ms
コード長 727 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-07-23 14:48:28
合計ジャッジ時間 28,670 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 84 ms
12,416 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 86 ms
12,032 KB
testcase_04 AC 85 ms
12,288 KB
testcase_05 AC 246 ms
15,744 KB
testcase_06 AC 86 ms
12,288 KB
testcase_07 AC 1,536 ms
20,096 KB
testcase_08 AC 1,559 ms
19,840 KB
testcase_09 AC 1,581 ms
19,840 KB
testcase_10 AC 94 ms
12,288 KB
testcase_11 AC 94 ms
12,288 KB
testcase_12 AC 1,400 ms
19,968 KB
testcase_13 AC 92 ms
12,672 KB
testcase_14 AC 96 ms
12,416 KB
testcase_15 AC 88 ms
12,288 KB
testcase_16 AC 89 ms
12,160 KB
testcase_17 AC 86 ms
12,160 KB
testcase_18 AC 126 ms
15,872 KB
testcase_19 AC 123 ms
15,744 KB
testcase_20 AC 1,478 ms
19,968 KB
testcase_21 AC 1,755 ms
19,712 KB
testcase_22 AC 2,287 ms
19,840 KB
testcase_23 AC 95 ms
12,416 KB
testcase_24 AC 1,609 ms
19,840 KB
testcase_25 AC 107 ms
13,696 KB
testcase_26 AC 325 ms
19,968 KB
testcase_27 AC 1,645 ms
20,096 KB
testcase_28 AC 177 ms
19,968 KB
testcase_29 AC 1,661 ms
19,968 KB
testcase_30 AC 733 ms
19,968 KB
testcase_31 AC 1,739 ms
19,968 KB
testcase_32 AC 514 ms
19,968 KB
testcase_33 AC 1,642 ms
19,968 KB
testcase_34 AC 378 ms
19,840 KB
testcase_35 AC 1,656 ms
20,096 KB
testcase_36 AC 87 ms
12,160 KB
testcase_37 AC 88 ms
12,288 KB
testcase_38 AC 88 ms
12,288 KB
testcase_39 AC 87 ms
12,288 KB
testcase_40 AC 85 ms
12,288 KB
testcase_41 AC 84 ms
12,288 KB
testcase_42 AC 86 ms
12,416 KB
testcase_43 AC 120 ms
13,312 KB
testcase_44 AC 274 ms
15,744 KB
testcase_45 AC 94 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(ar,dx,dy,h,w,c)
	
	arr= Marshal.load(Marshal.dump(ar))

	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
}


arr=Array.new(h).map{Array.new(w,0)}
c=0
i=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
}

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