結果

問題 No.2946 Puyo
ユーザー GOTKAKOGOTKAKO
提出日時 2024-10-25 21:36:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 213,604 KB
実行使用メモリ 12,228 KB
最終ジャッジ日時 2024-10-25 21:37:06
合計ジャッジ時間 5,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 33 ms
12,012 KB
testcase_04 AC 31 ms
12,152 KB
testcase_05 AC 31 ms
12,164 KB
testcase_06 AC 31 ms
12,028 KB
testcase_07 AC 32 ms
12,228 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 12 ms
6,820 KB
testcase_10 AC 4 ms
6,816 KB
testcase_11 AC 17 ms
7,552 KB
testcase_12 AC 4 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 6 ms
6,816 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 8 ms
6,820 KB
testcase_17 AC 24 ms
8,192 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 15 ms
6,816 KB
testcase_20 AC 19 ms
6,820 KB
testcase_21 AC 30 ms
7,552 KB
testcase_22 AC 5 ms
6,820 KB
testcase_23 AC 19 ms
6,816 KB
testcase_24 AC 43 ms
8,832 KB
testcase_25 AC 39 ms
7,936 KB
testcase_26 AC 41 ms
8,652 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 44 ms
7,552 KB
testcase_29 AC 37 ms
9,472 KB
testcase_30 AC 22 ms
6,820 KB
testcase_31 AC 33 ms
8,320 KB
testcase_32 AC 32 ms
8,448 KB
testcase_33 AC 27 ms
7,680 KB
testcase_34 AC 38 ms
9,720 KB
testcase_35 AC 33 ms
8,448 KB
testcase_36 AC 32 ms
8,704 KB
testcase_37 AC 34 ms
9,216 KB
testcase_38 AC 22 ms
7,552 KB
testcase_39 AC 21 ms
7,296 KB
testcase_40 AC 13 ms
6,816 KB
testcase_41 AC 26 ms
9,028 KB
testcase_42 AC 24 ms
8,448 KB
testcase_43 AC 26 ms
7,296 KB
testcase_44 AC 32 ms
8,320 KB
testcase_45 AC 26 ms
7,552 KB
testcase_46 AC 17 ms
6,816 KB
testcase_47 AC 25 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class UnionFind{
    public:
    vector<int> par,siz;
 
    void make(int N){
        par.resize(N,-1);
        siz.resize(N,1);
    }
 
    int root(int x){
        if(par.at(x) == -1) return x;
        else return par.at(x) = root(par.at(x));
    }
 
    void unite(int u, int v){
        u = root(u),v = root(v);
        if(u == v) return;
        if(siz.at(u) < siz.at(v)) swap(u,v);
 
        par.at(v) = u;
        siz.at(u) += siz.at(v);
    }
 
    bool issame(int u, int v){
        if(root(u) == root(v)) return true;
        else return false;
    }
};

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int H,W; cin >> H >> W;
    vector<string> S(H);
    for(auto &s : S) cin >> s;
    int n = H*W;
    UnionFind Z; Z.make(n);

    vector<pair<int,int>> dxy = {{-1,0},{0,1},{1,0},{0,-1}};
    for(int i=0; i<H; i++) for(int k=0; k<W; k++){
        int pos = i*W+k;
        for(auto &[dx,dy] : dxy){
            int nx = i+dx,ny = k+dy;
            if(nx < 0 || ny < 0 || nx >= H || ny >= W) continue;
            int pos2 = nx*W+ny;
            if(S.at(i).at(k) == S.at(nx).at(ny)) Z.unite(pos,pos2);
        }
    }
    for(int i=0; i<H; i++) for(int k=0; k<W; k++) if(Z.siz.at(Z.root(i*W+k)) >= 4) S.at(i).at(k) = '.';
    for(auto &s : S) cout << s << "\n";
} 
0