結果

問題 No.2946 Puyo
ユーザー MMMM
提出日時 2024-10-25 21:28:10
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 7,161 ms
コンパイル使用メモリ 337,924 KB
実行使用メモリ 9,256 KB
最終ジャッジ日時 2024-10-25 21:28:20
合計ジャッジ時間 10,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 33 ms
9,256 KB
testcase_04 AC 32 ms
9,200 KB
testcase_05 AC 33 ms
9,216 KB
testcase_06 AC 33 ms
9,216 KB
testcase_07 AC 32 ms
9,164 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 13 ms
6,824 KB
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 18 ms
6,816 KB
testcase_12 AC 4 ms
6,824 KB
testcase_13 AC 2 ms
6,824 KB
testcase_14 AC 6 ms
6,820 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 8 ms
6,820 KB
testcase_17 AC 22 ms
6,816 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 13 ms
6,820 KB
testcase_20 AC 17 ms
6,820 KB
testcase_21 AC 28 ms
6,816 KB
testcase_22 AC 6 ms
6,820 KB
testcase_23 AC 17 ms
6,824 KB
testcase_24 AC 36 ms
6,820 KB
testcase_25 AC 32 ms
6,820 KB
testcase_26 AC 36 ms
6,816 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 22 ms
6,824 KB
testcase_29 AC 30 ms
7,040 KB
testcase_30 AC 18 ms
6,816 KB
testcase_31 AC 25 ms
6,820 KB
testcase_32 AC 26 ms
6,820 KB
testcase_33 AC 23 ms
6,816 KB
testcase_34 AC 32 ms
7,552 KB
testcase_35 AC 27 ms
6,820 KB
testcase_36 AC 28 ms
6,820 KB
testcase_37 AC 28 ms
6,820 KB
testcase_38 AC 21 ms
6,816 KB
testcase_39 AC 19 ms
6,820 KB
testcase_40 AC 14 ms
6,820 KB
testcase_41 AC 26 ms
6,816 KB
testcase_42 AC 23 ms
6,816 KB
testcase_43 AC 22 ms
6,824 KB
testcase_44 AC 24 ms
6,820 KB
testcase_45 AC 22 ms
6,820 KB
testcase_46 AC 15 ms
6,820 KB
testcase_47 AC 21 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
using namespace std;
using namespace atcoder;
using ll = long long;
const ll mod = 998244353;
using mint = modint998244353;
using Graph = vector<vector<pair<int,ll>>>;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};

int main(){
  // input
  int H,W;
  cin >> H >> W;
  vector<string> S(H);
  for(int i = 0; i < H; i++)
    cin >> S[i];
  
  
  // solve : UF
  dsu uf(H*W);
  for(int i = 0; i < H; i++)
    for(int j = 0; j < W; j++){
      if(j+1 < W) if(S[i][j] == S[i][j+1]) uf.merge(i*W+j,i*W+j+1);
      if(i+1 < H) if(S[i][j] == S[i+1][j])uf.merge(i*W+j,(i+1)*W+j);
    }
  
  // reflect the result
  for(int i = 0; i < H; i++)
    for(int j = 0; j < W; j++)
      if(uf.size(uf.leader(i*W+j)) >= 4) S[i][j] = '.';
  
  // output
  for(int i = 0; i < H; i++)
    cout << S[i] << endl;
}
0