結果

問題 No.2456 Stamp Art
ユーザー ochiaigawaochiaigawa
提出日時 2023-09-01 23:45:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 310 ms / 5,000 ms
コード長 1,547 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 210,180 KB
実行使用メモリ 38,964 KB
最終ジャッジ日時 2024-06-11 18:07:25
合計ジャッジ時間 7,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 221 ms
38,836 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 253 ms
38,964 KB
testcase_07 AC 264 ms
38,964 KB
testcase_08 AC 256 ms
38,840 KB
testcase_09 AC 264 ms
38,832 KB
testcase_10 AC 309 ms
38,960 KB
testcase_11 AC 259 ms
38,960 KB
testcase_12 AC 269 ms
38,840 KB
testcase_13 AC 303 ms
38,836 KB
testcase_14 AC 310 ms
38,840 KB
testcase_15 AC 214 ms
38,840 KB
testcase_16 AC 107 ms
21,072 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 142 ms
26,880 KB
testcase_20 AC 282 ms
38,836 KB
testcase_21 AC 277 ms
35,584 KB
testcase_22 AC 284 ms
38,832 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 21 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  cin.tie(0); cout.tie(0);
  ios::sync_with_stdio(false);
  int H, W;
  cin >> H >> W;
  vector<string> S(H);
  for(int i = 0; i < H; i++) {
    cin >> S[i];
  }
  vector<vector<int>> C(H + 1, vector<int>(W + 1));
  for(int i = 0; i < H; i++) {
    for(int j = 0; j < W; j++) {
      C[i + 1][j + 1] = C[i + 1][j] + C[i][j + 1] - C[i][j] + (S[i][j] == '#' ? 1 : 0);
    }
  }
  int ok = 1, ng = min(H, W) + 1;
  while(ng - ok > 1) {
    int m = (ok + ng) >> 1;
    vector<vector<int>> imos(H + 1, vector<int>(W + 1));
    for(int i = 0; i <= H - m; i++) {
      for(int j = 0; j <= W - m; j++) {
        if(C[i + m][j + m] - C[i][j + m] - C[i + m][j] + C[i][j] == m * m) {
          imos[i][j]++;
          imos[i][j + m]--;
          imos[i + m][j]--;
          imos[i + m][j + m]++;
        }
      }
    }
    for(int i = 0; i < H; i++) {
      for(int j = 1; j < W; j++) {
        imos[i][j] += imos[i][j - 1];
      }
    }
    for(int i = 1; i < H; i++) {
      for(int j = 0; j < W; j++) {
        imos[i][j] += imos[i - 1][j];
      }
    }
    bool fn = true;
    //cout << m << endl;
    for(int i = 0; i < H; i++) {
      for(int j = 0; j < W; j++) {
        //cout << imos[i][j];
        if(S[i][j] == '.' && imos[i][j] > 0) {
          fn = false;
        }
        if(S[i][j] == '#' && imos[i][j] <= 0) {
          fn = false;
        } 
      }
      //cout << endl;
    }

    if(fn) {
      ok = m;
    } else {
      ng = m;
    }
  }
  cout << ok << '\n';
  return 0;
}
0