結果

問題 No.2456 Stamp Art
ユーザー hiro1729hiro1729
提出日時 2023-09-02 06:42:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,094 ms / 5,000 ms
コード長 882 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 332,888 KB
最終ジャッジ日時 2024-06-11 18:11:37
合計ジャッジ時間 24,152 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,512 KB
testcase_01 AC 32 ms
53,320 KB
testcase_02 AC 35 ms
52,708 KB
testcase_03 AC 1,106 ms
322,304 KB
testcase_04 AC 32 ms
52,680 KB
testcase_05 AC 48 ms
64,232 KB
testcase_06 AC 1,274 ms
323,236 KB
testcase_07 AC 1,167 ms
301,704 KB
testcase_08 AC 1,021 ms
324,200 KB
testcase_09 AC 1,273 ms
303,812 KB
testcase_10 AC 2,094 ms
270,436 KB
testcase_11 AC 1,347 ms
332,888 KB
testcase_12 AC 1,402 ms
324,264 KB
testcase_13 AC 1,895 ms
318,644 KB
testcase_14 AC 1,942 ms
301,872 KB
testcase_15 AC 1,045 ms
321,896 KB
testcase_16 AC 768 ms
217,608 KB
testcase_17 AC 52 ms
67,684 KB
testcase_18 AC 36 ms
59,612 KB
testcase_19 AC 740 ms
272,928 KB
testcase_20 AC 1,725 ms
270,116 KB
testcase_21 AC 1,476 ms
280,424 KB
testcase_22 AC 1,569 ms
302,372 KB
testcase_23 AC 123 ms
82,812 KB
testcase_24 AC 221 ms
92,212 KB
testcase_25 AC 33 ms
53,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
s = [input() for _ in range(h)]
v = [[0] * (w + 1) for _ in range(h + 1)]
for i in range(h):
	for j in range(w):
		if s[i][j] == '#': v[i + 1][j + 1] += 1
		v[i + 1][j + 1] += v[i + 1][j] + v[i][j + 1] - v[i][j]
def f(x):
	c = [[0] * (w + 2) for _ in range(h + 2)]
	for i in range(h - x + 1):
		for j in range(w - x + 1):
			if v[i + x][j + x] - v[i + x][j] - v[i][j + x] + v[i][j] == x * x:
				k, l = i + 1, j + 1
				c[k][l] += 1
				c[k + x][l] -= 1
				c[k][l + x] -= 1
				c[k + x][l + x] += 1
	for i in range(h + 1):
		for j in range(w):
			c[i][j + 1] += c[i][j]
	for i in range(h):
		for j in range(w + 1):
			c[i + 1][j] += c[i][j]
	for i in range(h):
		for j in range(w):
			if s[i][j] == '#' and c[i + 1][j + 1] == 0:
				return 0
	return 1
l = 1
r = min(h, w) + 1
while l + 1 < r:
	m = (l + r) // 2
	if f(m): l = m
	else: r = m
print(l)
0