結果

問題 No.2946 Puyo
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2024-11-11 03:43:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 1,383 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 215,676 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-11-11 03:43:51
合計ジャッジ時間 7,308 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 62 ms
5,632 KB
testcase_04 AC 71 ms
5,760 KB
testcase_05 AC 65 ms
5,632 KB
testcase_06 AC 63 ms
5,632 KB
testcase_07 AC 64 ms
5,632 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 23 ms
5,248 KB
testcase_10 AC 7 ms
5,248 KB
testcase_11 AC 33 ms
5,248 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 9 ms
5,248 KB
testcase_15 AC 5 ms
5,248 KB
testcase_16 AC 10 ms
5,248 KB
testcase_17 AC 33 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 19 ms
5,248 KB
testcase_20 AC 24 ms
5,248 KB
testcase_21 AC 38 ms
5,248 KB
testcase_22 AC 6 ms
5,248 KB
testcase_23 AC 30 ms
5,248 KB
testcase_24 AC 69 ms
5,248 KB
testcase_25 AC 60 ms
5,248 KB
testcase_26 AC 68 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 38 ms
5,248 KB
testcase_29 AC 60 ms
5,248 KB
testcase_30 AC 31 ms
5,248 KB
testcase_31 AC 44 ms
5,248 KB
testcase_32 AC 46 ms
5,248 KB
testcase_33 AC 41 ms
5,248 KB
testcase_34 AC 57 ms
5,248 KB
testcase_35 AC 50 ms
5,248 KB
testcase_36 AC 49 ms
5,248 KB
testcase_37 AC 55 ms
5,248 KB
testcase_38 AC 40 ms
5,248 KB
testcase_39 AC 37 ms
5,248 KB
testcase_40 AC 23 ms
5,248 KB
testcase_41 AC 51 ms
5,248 KB
testcase_42 AC 46 ms
5,248 KB
testcase_43 AC 36 ms
5,248 KB
testcase_44 AC 44 ms
5,248 KB
testcase_45 AC 37 ms
5,248 KB
testcase_46 AC 24 ms
5,248 KB
testcase_47 AC 39 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int H, W; cin >> H >> W;
  vector<int> dx = {-1, 0, 1, 0}, dy = {0, -1, 0, 1};
  vector<string> G(H); for (string &S : G) cin >> S;
  vector seen(H, vector<bool>(W));
  queue<pair<int, int>> Q;

  for (int i = 0; i < H; i++) {
    for (int j = 0; j < W; j++) {

      if (G.at(i).at(j) == '.') continue;
      int Count = 0;
      char A = G.at(i).at(j);
      Q.push({i, j});
      seen.at(i).at(j) = true;

      while (!Q.empty()){
        Count++;
        int y = Q.front().first, x = Q.front().second;
        Q.pop();
        for (int k = 0; k < 4; k++) {
          int ny = y + dy.at(k), nx = x + dx.at(k);
          if (ny < 0 || ny >= H || nx < 0 || nx >= W || seen.at(ny).at(nx) || G.at(ny).at(nx) != A) continue;
          Q.push({ny, nx});
          seen.at(ny).at(nx) = true;
        }
      }

      if (Count > 3) {
        Q.push({i, j});
        G.at(i).at(j) = '.';
        while (!Q.empty()) {
          int y = Q.front().first, x = Q.front().second;
          Q.pop();
          for (int k = 0; k < 4; k++) {
            int ny = y + dy.at(k), nx = x + dx.at(k);
            if (ny < 0 || ny >= H || nx < 0 || nx >= W || G.at(ny).at(nx) != A) continue;
            Q.push({ny, nx});
            G.at(ny).at(nx) = '.';
          }
        }
      }

    }
  }

  for (string S : G) cout << S << endl;
}
0