結果

問題 No.2456 Stamp Art
ユーザー Challestend RehtorbegnaroChallestend Rehtorbegnaro
提出日時 2023-09-01 22:14:46
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,188 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 40,192 KB
実行使用メモリ 36,864 KB
最終ジャッジ日時 2025-01-03 09:03:13
合計ジャッジ時間 5,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 0 ms
5,248 KB
testcase_03 AC 288 ms
36,864 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 0 ms
5,248 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 63 ms
21,120 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 96 ms
36,864 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 0 ms
5,248 KB
testcase_19 WA -
testcase_20 AC 101 ms
36,864 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 0 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%d%d", &n, &m);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp:13:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |                 scanf("%s", a[i] + 1);
      |                 ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#define maxn 2000

int n, m;
char a[maxn + 5][maxn + 5];
int sum[maxn + 5][maxn + 5], tmp[maxn + 5][maxn + 5];

int main()
{
	scanf("%d%d", &n, &m);
	for (int i = 1; i <= n; ++i)
		scanf("%s", a[i] + 1);
	for (int i = 1; i <= n; ++i)
		for (int j = 1; j <= m; ++j)
			sum[i][j] = sum[i][j - 1] + sum[i - 1][j] - sum[i - 1][j - 1] + (a[i][j] == '#');
	int L = 1, R = std::min(n, m);
	for (; L < R; )
	{
		int mid = (L + R + 1) >> 1;
		for (int i = 1; i + mid - 1 <= n; ++i)
			for (int j = 1; j + mid - 1 <= m; ++j)
			{
				int _i = i + mid - 1, _j = j + mid - 1;
				int cnt = sum[_i][_j] - sum[_i][j - 1] - sum[i - 1][_j] + sum[i - 1][j - 1];
				if (cnt == mid * mid) ++tmp[i][j], --tmp[i][_j + 1], --tmp[_i + 1][j], ++tmp[_i + 1][_j + 1];
			}
		bool res = true;
		for (int i = 1; i <= n && res; ++i)
			for (int j = 1; j <= m && res; ++j)
			{
				tmp[i][j] = tmp[i][j - 1] + tmp[i - 1][j] - tmp[i - 1][j - 1] + tmp[i][j];
				if ((tmp[i][j] > 0 && a[i][j] == '.') || (tmp[i][j] == 0 && a[i][j] == '#')) res = false;
			}
		if (res)
			L = mid;
		else
			R = mid - 1;
	}
	printf("%d", L);
	return 0;
}
0