結果

問題 No.2946 Puyo
ユーザー miiitomimiiitomi
提出日時 2024-10-25 21:28:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 1,822 bytes
コンパイル時間 3,175 ms
コンパイル使用メモリ 253,180 KB
実行使用メモリ 12,136 KB
最終ジャッジ日時 2024-10-25 21:28:15
合計ジャッジ時間 6,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 28 ms
11,960 KB
testcase_04 AC 28 ms
12,096 KB
testcase_05 AC 28 ms
12,100 KB
testcase_06 AC 29 ms
11,960 KB
testcase_07 AC 28 ms
12,136 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 11 ms
6,816 KB
testcase_10 AC 4 ms
6,816 KB
testcase_11 AC 16 ms
7,680 KB
testcase_12 AC 4 ms
6,824 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 5 ms
6,820 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 6 ms
6,816 KB
testcase_17 AC 16 ms
8,192 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 11 ms
6,816 KB
testcase_20 AC 15 ms
6,816 KB
testcase_21 AC 23 ms
7,552 KB
testcase_22 AC 5 ms
6,816 KB
testcase_23 AC 17 ms
6,816 KB
testcase_24 AC 38 ms
8,836 KB
testcase_25 AC 35 ms
8,064 KB
testcase_26 AC 37 ms
8,532 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 24 ms
7,552 KB
testcase_29 AC 32 ms
9,428 KB
testcase_30 AC 19 ms
6,816 KB
testcase_31 AC 26 ms
8,320 KB
testcase_32 AC 28 ms
8,320 KB
testcase_33 AC 25 ms
7,552 KB
testcase_34 AC 35 ms
9,600 KB
testcase_35 AC 28 ms
8,544 KB
testcase_36 AC 28 ms
8,704 KB
testcase_37 AC 30 ms
9,312 KB
testcase_38 AC 21 ms
7,552 KB
testcase_39 AC 20 ms
7,296 KB
testcase_40 AC 12 ms
6,820 KB
testcase_41 AC 24 ms
8,952 KB
testcase_42 AC 22 ms
8,384 KB
testcase_43 AC 23 ms
7,296 KB
testcase_44 AC 26 ms
8,280 KB
testcase_45 AC 23 ms
7,424 KB
testcase_46 AC 16 ms
6,820 KB
testcase_47 AC 22 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = 2e+18;
const ll MOD = 998244353;

struct UnionFind {
    vector<int> par, siz;

    UnionFind(int n) : par(n, -1), siz(n, 1) {}

    int root(int x) {
        if (par[x] == -1) return x;
        else return par[x] = root(par[x]);
    }

    bool issame(int x, int y) {
        return root(x) == root(y);
    }

    bool unite(int x, int y) {
        x = root(x);
        y = root(y);
        if (x == y) return false;
        if (siz[x] < siz[y]) swap(x, y);
        par[y] = x;
        siz[x] += siz[y];
        return true;
    }

    int size(int x) {
        return siz[root(x)];
    }
};

int H, W;
vector<int> dx{1, -1, 0, 0}, dy{0, 0, 1, -1};
bool is_in(int x, int y) {return 0 <= x && x < H && 0 <= y && y < W;}
int to_int(int x, int y) {return x*W + y;}
pair<int,int> to_xy(int i) {return make_pair(i/W, i%W);}

void solve() {
    cin >> H >> W;
    vector<string> G(H);
    for (int i = 0; i < H; i++) cin >> G[i];
    UnionFind uf(H*W);
    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            if (G[i][j] == '.') continue;
            int x = to_int(i, j);
            for (int k = 0; k < 4; k++) {
                int s = i + dx[k], t = j + dy[k];
                if (!is_in(s, t) || G[i][j] != G[s][t]) continue;
                uf.unite(x, to_int(s, t));
            }
        }
    }

    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            int u = to_int(i, j);
            if (uf.size(uf.root(u)) < 4) continue;
            G[i][j] = '.';
        }
    }

    for (auto &s : G) cout << s << "\n";
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int T = 1;
    // cin >> T;
    while (T--) solve();
}
0