結果

問題 No.2946 Puyo
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-25 21:27:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,462 bytes
コンパイル時間 5,557 ms
コンパイル使用メモリ 316,592 KB
実行使用メモリ 68,384 KB
最終ジャッジ日時 2024-10-25 21:28:11
合計ジャッジ時間 11,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 208 ms
68,292 KB
testcase_04 AC 207 ms
68,384 KB
testcase_05 AC 219 ms
68,364 KB
testcase_06 AC 211 ms
68,384 KB
testcase_07 AC 207 ms
68,344 KB
testcase_08 AC 17 ms
7,936 KB
testcase_09 AC 70 ms
24,116 KB
testcase_10 AC 16 ms
6,912 KB
testcase_11 AC 110 ms
36,072 KB
testcase_12 AC 17 ms
7,424 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 26 ms
9,856 KB
testcase_15 AC 13 ms
6,820 KB
testcase_16 AC 39 ms
13,548 KB
testcase_17 AC 119 ms
37,476 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 48 ms
14,912 KB
testcase_20 AC 66 ms
18,492 KB
testcase_21 AC 111 ms
29,176 KB
testcase_22 AC 16 ms
6,820 KB
testcase_23 AC 55 ms
16,416 KB
testcase_24 AC 139 ms
34,052 KB
testcase_25 AC 110 ms
29,984 KB
testcase_26 AC 131 ms
33,148 KB
testcase_27 AC 5 ms
6,820 KB
testcase_28 AC 74 ms
22,696 KB
testcase_29 AC 104 ms
31,620 KB
testcase_30 AC 53 ms
18,592 KB
testcase_31 AC 82 ms
26,184 KB
testcase_32 AC 89 ms
26,772 KB
testcase_33 AC 74 ms
23,764 KB
testcase_34 AC 107 ms
33,368 KB
testcase_35 AC 95 ms
28,652 KB
testcase_36 AC 99 ms
30,084 KB
testcase_37 AC 114 ms
34,124 KB
testcase_38 AC 85 ms
26,572 KB
testcase_39 AC 96 ms
26,452 KB
testcase_40 AC 60 ms
19,276 KB
testcase_41 AC 114 ms
36,836 KB
testcase_42 AC 107 ms
34,776 KB
testcase_43 AC 67 ms
21,628 KB
testcase_44 AC 83 ms
26,036 KB
testcase_45 AC 66 ms
22,124 KB
testcase_46 AC 42 ms
14,956 KB
testcase_47 AC 67 ms
21,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define For(i, a, b) for(long long i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(long long i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

vector<int> di = {-1, 0, 1, 0};
vector<int> dj = {0, 1, 0, -1};

int main() {
    int h, w;
    cin >> h >> w;
    vector<vector<char>> s(h, vector<char>(w));
    rep(i, h) {
        rep(j, w) {
            cin >> s[i][j];
        }
    }
    auto inc = [&](int i, int j) {
        return (0 <= i && i < h && 0 <= j && j < w);
    };
    atcoder::dsu uf(h * w);
    rep(i, h) {
        rep(j, w) {
            rep(k, 4) {
                int ni = i + di[k], nj = j + dj[k];
                if (!inc(ni, nj)) {
                    continue;
                }
                if (s[i][j] == s[ni][nj]) {
                    uf.merge(w * i + j, w * ni + nj);
                }
            }
        }
    }
    auto g = uf.groups();
    vector<vector<char>> ans = s;
    for (auto v : g) {
        if ((int)v.size() < 4) {
            continue;
        }
        for (int x : v) {
            int i = x / w, j = x % w;
            ans[i][j] = '.';
        }
    }
    rep(i, h) {
        rep(j, w) {
            cout << ans[i][j];
        }
        cout << endl;
    }
}
0