結果

問題 No.2946 Puyo
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-11-28 18:13:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 2,133 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 252,820 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-11-28 18:13:11
合計ジャッジ時間 8,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 37 ms
12,032 KB
testcase_04 AC 36 ms
12,160 KB
testcase_05 AC 37 ms
12,160 KB
testcase_06 AC 36 ms
12,160 KB
testcase_07 AC 44 ms
12,032 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 14 ms
6,144 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 21 ms
7,552 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 7 ms
5,248 KB
testcase_15 AC 5 ms
5,248 KB
testcase_16 AC 10 ms
5,248 KB
testcase_17 AC 27 ms
8,192 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 21 ms
5,760 KB
testcase_21 AC 34 ms
7,680 KB
testcase_22 AC 7 ms
5,248 KB
testcase_23 AC 21 ms
5,632 KB
testcase_24 AC 47 ms
8,832 KB
testcase_25 AC 41 ms
7,936 KB
testcase_26 AC 45 ms
8,576 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 25 ms
7,680 KB
testcase_29 AC 36 ms
9,472 KB
testcase_30 AC 20 ms
6,656 KB
testcase_31 AC 29 ms
8,192 KB
testcase_32 AC 29 ms
8,448 KB
testcase_33 AC 27 ms
7,552 KB
testcase_34 AC 38 ms
9,728 KB
testcase_35 AC 31 ms
8,576 KB
testcase_36 AC 32 ms
8,576 KB
testcase_37 AC 34 ms
9,088 KB
testcase_38 AC 24 ms
7,680 KB
testcase_39 AC 22 ms
7,296 KB
testcase_40 AC 14 ms
5,888 KB
testcase_41 AC 29 ms
8,832 KB
testcase_42 AC 26 ms
8,448 KB
testcase_43 AC 24 ms
7,296 KB
testcase_44 AC 30 ms
8,320 KB
testcase_45 AC 24 ms
7,424 KB
testcase_46 AC 16 ms
5,888 KB
testcase_47 AC 24 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<int(n); ++i)
#define repll(i,m,n) for(ll i=m; i<ll(n); ++i)
#define all(a) (a).begin(), (a).end()
#define rall(a) (a).rbegin(), (a).rend()
#define fi first
#define se second

template<typename T> bool chmin(T& a, T b){ if(a > b){a = b; return true;} return false; }
template<typename T> bool chmax(T& a, T b){ if(a < b){a = b; return true;} return false; }

template<typename T> T gcd(T a, T b){ return a % b ? gcd(b, a % b) : b; }
template<typename T> T lcm(T a, T b){ return a / gcd(a, b) * b; }

const int dy[4] = {1, 0, -1, 0};
const int dx[4] = {0, 1, 0, -1};

struct UnionFind{
    vector<int> siz, parent;

    UnionFind(){}
    UnionFind(int n){
        siz.resize(n, 0);
        parent.resize(n, 0);
        for(int i=0; i<n; ++i){
            make_tree(i);
        }
    }

    void make_tree(int x){
        parent[x] = x;
        siz[x] = 1;
    }

    bool is_same(int x, int y){
        return find_root(x) == find_root(y);
    }

    bool unite(int x, int y){
        x = find_root(x);
        y = find_root(y);
        if(x == y) return false;
        if(siz[x] > siz[y]){
            parent[y] = x;
            siz[x] += siz[y];
        }else{
            parent[x] = y;
            siz[y] += siz[x];
        }
        return true;
    }

    int find_root(int x){
        if(x != parent[x]) parent[x] = find_root(parent[x]);
        return parent[x];
    }

    int tree_size(int x){
        return siz[find_root(x)];
    }
};

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

    int H, W;
    cin >> H >> W;
    vector<string> G(H);
    rep(y, 0, H) cin >> G[y];

    UnionFind UF(H*W);
    rep(y, 0, H) rep(x, 0, W) rep(d, 0, 4){
        int ny = y + dy[d], nx = x + dx[d];
        if(!(0 <= ny && ny < H && 0 <= nx && nx < W)) continue;
        if(G[y][x] == G[ny][nx]) UF.unite(y*W + x, ny*W + nx);
    }

    rep(y, 0, H){
        rep(x, 0, W){
            if(UF.tree_size(y*W + x) >= 4) cout << '.';
            else cout << G[y][x];
        }
        cout << endl;
    }

    return 0;
}
0