結果

問題 No.2456 Stamp Art
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-09-01 23:06:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 588 ms / 5,000 ms
コード長 1,531 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 203,736 KB
実行使用メモリ 87,348 KB
最終ジャッジ日時 2024-06-11 18:03:28
合計ジャッジ時間 11,993 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,628 KB
testcase_01 AC 2 ms
7,628 KB
testcase_02 AC 2 ms
7,504 KB
testcase_03 AC 586 ms
86,932 KB
testcase_04 AC 2 ms
7,628 KB
testcase_05 AC 2 ms
7,504 KB
testcase_06 AC 580 ms
86,928 KB
testcase_07 AC 546 ms
87,348 KB
testcase_08 AC 538 ms
86,936 KB
testcase_09 AC 578 ms
86,928 KB
testcase_10 AC 584 ms
87,060 KB
testcase_11 AC 587 ms
86,932 KB
testcase_12 AC 554 ms
87,056 KB
testcase_13 AC 588 ms
86,936 KB
testcase_14 AC 588 ms
87,060 KB
testcase_15 AC 581 ms
86,932 KB
testcase_16 AC 301 ms
72,288 KB
testcase_17 AC 3 ms
7,628 KB
testcase_18 AC 2 ms
7,632 KB
testcase_19 AC 359 ms
64,440 KB
testcase_20 AC 563 ms
87,060 KB
testcase_21 AC 502 ms
84,320 KB
testcase_22 AC 563 ms
86,936 KB
testcase_23 AC 32 ms
57,216 KB
testcase_24 AC 42 ms
33,772 KB
testcase_25 AC 2 ms
7,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int H, W;
	cin >> H >> W;
	int A[4040][4040];
	char C[2020][2020];
	for (int i = 0; i < H; i ++) {
		for (int j = 0; j < W; j ++) {
			char c;
			cin >> c;
			A[i + 1][j + 1] = c == '#';
			C[i][j] = c;
		}
	}
	int ng = min(H, W) + 1, ok = 1;
	for (int i = 0; i <= H + ng; i ++) {
		for (int j = 0; j <= W + ng; j ++) {
			if (0 < i && i <= H && 0 < j && j <= W) continue;
			A[i][j] = 0;
		}
	}
	for (int i = 0; i < H + ng; i ++) {
		for (int j = 1; j < W + ng; j ++) {
			A[i][j] += A[i][j - 1];
		}
	}
	for (int j = 0; j < W + ng; j ++) {
		for (int i = 1; i < H + ng; i ++) {
			A[i][j] += A[i - 1][j];
		}
	}
	int B[2040][2040];
	while (abs(ok - ng) > 1) {
		int mu = (ok + ng) / 2;
		for (int i = 0; i < H; i ++) {
			for (int j = 0; j < W; j ++) {
				B[i][j] = 0;
			}
		}
		for (int i = 0; i < H; i ++) {
			for (int j = 0; j < W; j ++) {
				if (A[i][j] + A[i + mu][j + mu] - A[i][j + mu] - A[i + mu][j] >= mu * mu) {
					B[i][j] ++;
					B[i + mu][j] --;
					B[i][j + mu] --;
					B[i + mu][j + mu] ++;
				}
			}
		}
		for (int i = 0; i < H; i ++) {
			for (int j = 1; j < W; j ++) {
				B[i][j] += B[i][j - 1];
			}
		}
		for (int j = 0; j < W; j ++) {
			for (int i = 1; i < H; i ++) {
				B[i][j] += B[i - 1][j];
			}
		}
		bool cn = true;
		for (int i = 0; i < H; i ++) {
			for (int j = 0; j < W; j ++) {
				if (C[i][j] == '#') {
					cn = cn && B[i][j] > 0;
				}
			}
		}
		if (cn) {
			ok = mu;
		} else {
			ng = mu;
		}
	}
	cout << ok << endl;
}
0