結果
問題 | No.2456 Stamp Art |
ユーザー | Challestend Rehtorbegnaro |
提出日時 | 2023-09-01 22:14:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,188 bytes |
コンパイル時間 | 377 ms |
コンパイル使用メモリ | 43,972 KB |
実行使用メモリ | 38,528 KB |
最終ジャッジ日時 | 2024-06-11 04:05:30 |
合計ジャッジ時間 | 4,374 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 291 ms
38,400 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 59 ms
22,656 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 89 ms
38,400 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 92 ms
38,400 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
5,376 KB |
ソースコード
#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; }