結果

問題 No.2456 Stamp Art
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-09-01 23:01:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,501 bytes
コンパイル時間 2,518 ms
コンパイル使用メモリ 202,952 KB
実行使用メモリ 95,300 KB
最終ジャッジ日時 2024-06-11 05:05:44
合計ジャッジ時間 15,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 3 ms
7,500 KB
testcase_03 WA -
testcase_04 AC 3 ms
7,504 KB
testcase_05 AC 3 ms
7,756 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 863 ms
94,880 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 801 ms
94,932 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
7,632 KB
testcase_19 WA -
testcase_20 AC 801 ms
94,896 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
5,376 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][j] = 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 (i < H && 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[4040][4040];
	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