結果

問題 No.2946 Puyo
ユーザー Hydrogen332Hydrogen332
提出日時 2024-10-29 22:00:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,747 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 207,648 KB
実行使用メモリ 12,080 KB
最終ジャッジ日時 2024-10-29 22:00:18
合計ジャッジ時間 7,444 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,816 KB
testcase_03 AC 57 ms
12,028 KB
testcase_04 AC 57 ms
12,012 KB
testcase_05 AC 56 ms
11,988 KB
testcase_06 AC 56 ms
12,080 KB
testcase_07 AC 56 ms
12,012 KB
testcase_08 AC 6 ms
6,820 KB
testcase_09 AC 20 ms
6,820 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 30 ms
7,680 KB
testcase_12 AC 5 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 8 ms
6,820 KB
testcase_15 AC 6 ms
6,816 KB
testcase_16 AC 13 ms
6,816 KB
testcase_17 AC 38 ms
8,192 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 20 ms
6,816 KB
testcase_20 AC 25 ms
6,820 KB
testcase_21 AC 42 ms
7,552 KB
testcase_22 AC 7 ms
6,816 KB
testcase_23 AC 25 ms
6,820 KB
testcase_24 AC 56 ms
8,956 KB
testcase_25 AC 50 ms
8,064 KB
testcase_26 AC 57 ms
8,704 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 39 ms
7,552 KB
testcase_29 AC 54 ms
9,384 KB
testcase_30 AC 31 ms
6,816 KB
testcase_31 AC 46 ms
8,320 KB
testcase_32 AC 45 ms
8,320 KB
testcase_33 AC 40 ms
7,552 KB
testcase_34 AC 55 ms
9,676 KB
testcase_35 AC 46 ms
8,448 KB
testcase_36 AC 47 ms
8,696 KB
testcase_37 AC 51 ms
9,216 KB
testcase_38 AC 35 ms
7,424 KB
testcase_39 AC 33 ms
7,296 KB
testcase_40 AC 21 ms
6,820 KB
testcase_41 AC 43 ms
9,076 KB
testcase_42 AC 40 ms
8,320 KB
testcase_43 AC 37 ms
7,296 KB
testcase_44 AC 45 ms
8,192 KB
testcase_45 AC 38 ms
7,424 KB
testcase_46 AC 25 ms
6,820 KB
testcase_47 AC 36 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, e) for (int i = (int)s; i < (int)e; ++i)
#define all(a) (a).begin(), (a).end()

struct UnionFind {
    vector<int> par, siz;
    int v, group;
    
    UnionFind(int n) {
        par = vector<int>(n, -1);
        siz = vector<int>(n, 1);
        v = n;
        group = n;
    }
    
    int root(int x) {
        if (par[x] == -1) return x;
        else return par[x] = root(par[x]);
    }
    
    bool same(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];
        group--;
        return true;
    }
    
    int size(int x) {
        return siz[root(x)];
    }
};

int main() {
    cin.tie(nullptr);
    
    int H, W;
    cin >> H >> W;
    vector G(H, vector<char>(W));
    rep(i, 0, H) rep(j, 0, W) cin >> G[i][j];
    
    UnionFind uf(H * W);
    
    rep(i, 0, H) rep(j, 0, W) {
        if (i != 0) {
            if (G[i][j] == G[i - 1][j]) uf.unite(i * W + j, (i - 1) * W + j);
        }
        
        if (i != H - 1) {
            if (G[i][j] == G[i + 1][j]) uf.unite(i * W + j, (i + 1) * W + j);
        }
        
        if (j != 0) {
            if (G[i][j] == G[i][j - 1]) uf.unite(i * W + j, i * W + j - 1);
        }
        
        if (j != W - 1) {
            if (G[i][j] == G[i][j + 1]) uf.unite(i * W + j, i * W + j + 1);
        }
    }
    
    rep(i, 0, H) rep(j, 0, W) {
        if (uf.size(i * W + j) >= 4) cout << '.';
        else cout << G[i][j];
        
        if (j == W - 1) cout << '\n';
    }
}
0