結果

問題 No.2946 Puyo
ユーザー Nzt3Nzt3
提出日時 2024-10-25 21:35:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,323 bytes
コンパイル時間 3,313 ms
コンパイル使用メモリ 260,304 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-10-25 21:35:16
合計ジャッジ時間 7,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 92 ms
8,576 KB
testcase_04 AC 94 ms
8,448 KB
testcase_05 AC 93 ms
8,448 KB
testcase_06 AC 94 ms
8,448 KB
testcase_07 AC 93 ms
8,576 KB
testcase_08 AC 8 ms
6,816 KB
testcase_09 AC 30 ms
6,816 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 46 ms
6,824 KB
testcase_12 AC 7 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 13 ms
6,824 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 21 ms
6,820 KB
testcase_17 AC 71 ms
6,912 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 35 ms
6,816 KB
testcase_20 AC 46 ms
6,816 KB
testcase_21 AC 79 ms
7,424 KB
testcase_22 AC 10 ms
6,816 KB
testcase_23 AC 45 ms
6,816 KB
testcase_24 AC 117 ms
8,960 KB
testcase_25 AC 99 ms
8,320 KB
testcase_26 AC 111 ms
8,832 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 31 ms
6,816 KB
testcase_29 AC 44 ms
7,168 KB
testcase_30 AC 25 ms
6,816 KB
testcase_31 AC 41 ms
6,820 KB
testcase_32 AC 51 ms
7,040 KB
testcase_33 AC 51 ms
7,040 KB
testcase_34 AC 88 ms
8,832 KB
testcase_35 AC 77 ms
8,192 KB
testcase_36 AC 81 ms
8,576 KB
testcase_37 AC 96 ms
9,216 KB
testcase_38 AC 61 ms
7,424 KB
testcase_39 AC 60 ms
7,040 KB
testcase_40 AC 33 ms
6,816 KB
testcase_41 AC 83 ms
8,192 KB
testcase_42 AC 68 ms
7,424 KB
testcase_43 AC 26 ms
6,820 KB
testcase_44 AC 32 ms
6,816 KB
testcase_45 AC 27 ms
6,816 KB
testcase_46 AC 18 ms
6,816 KB
testcase_47 AC 31 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
constexpr int MOD = 998244353;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, l, r) for (int i = (l); i < (int)(r); i++)
#define all(v) v.begin(), v.end()
int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int H,W;
  cin>>H>>W;
  vector<string>S(H);
  for(auto &i:S)cin>>i;
  vector rt(H,vector(W,-1));
  auto xy2i=[W](int x,int y){
    return x*W+y;
  };
  auto i2xy=[W](int i){
    return make_pair(i/W,i%W);
  };
  auto bound_ok=[H,W](int x,int y){
    return x>=0&&x<H&&y>=0&&y<W;
  };
  int dx[]={0,1,0,-1};
  int dy[]={-1,0,1,0};
  set<int>er;
  rep(i,H){
    rep(j,W){
      if(rt[i][j]!=-1)continue;
      queue<int>bfs;
      rt[i][j]=xy2i(i,j);
      bfs.push(xy2i(i,j));
      int cnt=0;
      while(bfs.size()){
        auto [x,y]=i2xy(bfs.front());
        bfs.pop();
        cnt++;
        rep(k,4){
          int x2=x+dx[k],y2=y+dy[k];
          if(bound_ok(x2,y2)&&S[x2][y2]==S[x][y]&&rt[x2][y2]==-1){
            rt[x2][y2]=xy2i(i,j);
            bfs.push(xy2i(x2,y2));
          }
        }
      }
      if(cnt>=4)er.insert(xy2i(i,j));
    }
  }
  rep(i,H){
    rep(j,W){
      if(er.contains(rt[i][j]))cout<<'.';
      else cout<<S[i][j];
    }
    cout<<'\n';
  }
}
0