結果

問題 No.2456 Stamp Art
ユーザー tnakao0123tnakao0123
提出日時 2024-06-22 02:10:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 234 ms / 5,000 ms
コード長 1,617 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 46,208 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-06-22 02:10:59
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,372 KB
testcase_01 AC 2 ms
7,380 KB
testcase_02 AC 2 ms
7,384 KB
testcase_03 AC 200 ms
53,972 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
7,264 KB
testcase_06 AC 223 ms
53,976 KB
testcase_07 AC 177 ms
54,096 KB
testcase_08 AC 152 ms
54,100 KB
testcase_09 AC 189 ms
53,976 KB
testcase_10 AC 193 ms
53,972 KB
testcase_11 AC 189 ms
53,844 KB
testcase_12 AC 179 ms
53,972 KB
testcase_13 AC 234 ms
53,976 KB
testcase_14 AC 199 ms
53,976 KB
testcase_15 AC 177 ms
53,968 KB
testcase_16 AC 115 ms
53,920 KB
testcase_17 AC 3 ms
7,396 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 111 ms
41,916 KB
testcase_20 AC 186 ms
54,104 KB
testcase_21 AC 208 ms
53,792 KB
testcase_22 AC 204 ms
53,968 KB
testcase_23 AC 28 ms
40,120 KB
testcase_24 AC 25 ms
22,344 KB
testcase_25 AC 2 ms
7,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2456.cc:  No.2456 Stamp Art - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_H = 2000;
const int MAX_W = 2000;

/* typedef */

/* global variables */

char fs[MAX_H][MAX_W + 4];
int ass[MAX_H + 1][MAX_W + 1];
int bs[MAX_H + 1][MAX_W + 1], bss[MAX_H + 1][MAX_W + 1];

/* subroutines */

inline int rect(int y0, int x0, int y1, int x1) {
  return
    ass[y1][x1] - ass[y1][x0] - ass[y0][x1] + ass[y0][x0];
}

bool check(int h, int w, int k) {
  for (int y = 0; y <= h; y++)
    fill(bs[y], bs[y] + w + 1, 0);
  
  int kk = k * k;
  for (int y = 0; y + k <= h; y++)
    for (int x = 0; x + k <= w; x++)
      if (rect(y, x, y + k, x + k) == kk) {
	bs[y][x]++;
	bs[y + k][x]--;
	bs[y][x + k]--;
	bs[y + k][x + k]++;
      }

  for (int y = 0; y < h; y++)
    for (int x = 0; x < w; x++)
      bss[y + 1][x + 1] =
	bs[y][x] + bss[y + 1][x] + bss[y][x + 1] - bss[y][x];

  for (int y = 0; y < h; y++)
    for (int x = 0; x < w; x++) {
      int c = bss[y + 1][x + 1];
      if ((fs[y][x] == '#' && c == 0) ||
	  (fs[y][x] == '.' && c > 0)) return false;
    }
  return true;
}

/* main */

int main() {
  int h, w;
  scanf("%d%d", &h, &w);
  for (int y = 0; y < h; y++) scanf("%s", fs[y]);

  for (int y = 0; y < h; y++)
    for (int x = 0; x < w; x++)
      ass[y + 1][x + 1] =
	(fs[y][x] == '#' ? 1 : 0)
	+ ass[y + 1][x] + ass[y][x + 1] - ass[y][x];
  
  int k0 = 1, k1 = min(h, w) + 1;
  while (k0 + 1 < k1) {
    int k = (k0 + k1) / 2;
    if (check(h, w, k)) k0 = k;
    else k1 = k;
  }

  printf("%d\n", k0);
  
  return 0;
}
0