結果

問題 No.2946 Puyo
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-27 17:02:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 2,702 ms
コンパイル使用メモリ 214,292 KB
実行使用メモリ 25,760 KB
最終ジャッジ日時 2024-10-27 17:02:43
合計ジャッジ時間 6,531 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 36 ms
6,816 KB
testcase_04 AC 35 ms
6,820 KB
testcase_05 AC 36 ms
6,820 KB
testcase_06 AC 35 ms
6,816 KB
testcase_07 AC 35 ms
6,816 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 14 ms
6,816 KB
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 19 ms
6,820 KB
testcase_12 AC 5 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 7 ms
6,816 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 9 ms
6,816 KB
testcase_17 AC 23 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 12 ms
6,816 KB
testcase_20 AC 17 ms
6,816 KB
testcase_21 AC 26 ms
6,816 KB
testcase_22 AC 6 ms
6,820 KB
testcase_23 AC 16 ms
6,820 KB
testcase_24 AC 36 ms
6,816 KB
testcase_25 AC 33 ms
6,816 KB
testcase_26 AC 35 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 26 ms
11,216 KB
testcase_29 AC 33 ms
10,628 KB
testcase_30 AC 20 ms
9,880 KB
testcase_31 AC 29 ms
11,440 KB
testcase_32 AC 24 ms
7,040 KB
testcase_33 AC 21 ms
6,816 KB
testcase_34 AC 30 ms
7,168 KB
testcase_35 AC 24 ms
6,816 KB
testcase_36 AC 25 ms
6,816 KB
testcase_37 AC 27 ms
6,820 KB
testcase_38 AC 20 ms
6,816 KB
testcase_39 AC 19 ms
6,816 KB
testcase_40 AC 12 ms
6,820 KB
testcase_41 AC 25 ms
6,816 KB
testcase_42 AC 23 ms
6,816 KB
testcase_43 AC 34 ms
22,028 KB
testcase_44 AC 41 ms
25,760 KB
testcase_45 AC 27 ms
12,864 KB
testcase_46 AC 15 ms
6,820 KB
testcase_47 AC 23 ms
9,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

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

    int H, W, x, y;
    cin >> H >> W;
    vector<string> S(H), T;
    for (int i=0; i<H; i++) cin >> S[i];
    T = S;
    vector<pair<int, int>> v;
    int dx[4] = {1,0,-1,0}, dy[4] = {0,1,0,-1};
    auto check=[&](int x, int y){
        return 0<=x && x<H && 0<=y && y<W;
    };
    vector used(H, vector<bool>(W));

    auto dfs=[&](auto self, int x, int y)->void{
        int nx, ny;
        used[x][y] = 1;
        v.push_back({x, y});
        for (int k=0; k<4; k++){
            nx = x+dx[k]; ny = y+dy[k];
            if (!check(nx, ny) || used[nx][ny]) continue;
            if (S[x][y] != S[nx][ny]) continue;
            self(self, nx, ny);
        }
    };

    for (int i=0; i<H; i++){
        for (int j=0; j<W; j++){
            if (used[i][j]) continue;
            dfs(dfs, i, j);
            if (v.size()>=4){
                for (auto [x, y] : v){
                    T[x][y] = '.';
                }
            }
            v.clear();
        }
    }

    for (int i=0; i<H; i++) cout << T[i] << endl;

    return 0;
}
0