結果

問題 No.2946 Puyo
ユーザー matanekomataneko
提出日時 2024-10-25 21:52:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 2,374 bytes
コンパイル時間 5,063 ms
コンパイル使用メモリ 281,124 KB
実行使用メモリ 9,408 KB
最終ジャッジ日時 2024-10-25 21:52:57
合計ジャッジ時間 9,302 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 116 ms
6,816 KB
testcase_04 AC 116 ms
6,820 KB
testcase_05 AC 116 ms
6,820 KB
testcase_06 AC 115 ms
6,820 KB
testcase_07 AC 116 ms
6,820 KB
testcase_08 AC 10 ms
6,820 KB
testcase_09 AC 38 ms
6,824 KB
testcase_10 AC 9 ms
6,820 KB
testcase_11 AC 58 ms
6,816 KB
testcase_12 AC 10 ms
6,820 KB
testcase_13 AC 2 ms
6,824 KB
testcase_14 AC 13 ms
6,816 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 18 ms
6,816 KB
testcase_17 AC 56 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 24 ms
6,824 KB
testcase_20 AC 31 ms
6,816 KB
testcase_21 AC 50 ms
6,824 KB
testcase_22 AC 8 ms
6,820 KB
testcase_23 AC 32 ms
6,824 KB
testcase_24 AC 74 ms
6,820 KB
testcase_25 AC 64 ms
6,816 KB
testcase_26 AC 94 ms
6,816 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 29 ms
6,816 KB
testcase_29 AC 40 ms
6,820 KB
testcase_30 AC 23 ms
6,820 KB
testcase_31 AC 33 ms
6,824 KB
testcase_32 AC 35 ms
6,816 KB
testcase_33 AC 33 ms
6,820 KB
testcase_34 AC 47 ms
6,820 KB
testcase_35 AC 42 ms
6,820 KB
testcase_36 AC 47 ms
6,820 KB
testcase_37 AC 56 ms
6,820 KB
testcase_38 AC 43 ms
6,820 KB
testcase_39 AC 43 ms
6,820 KB
testcase_40 AC 31 ms
6,816 KB
testcase_41 AC 61 ms
6,824 KB
testcase_42 AC 58 ms
6,816 KB
testcase_43 AC 29 ms
8,940 KB
testcase_44 AC 34 ms
9,408 KB
testcase_45 AC 28 ms
6,820 KB
testcase_46 AC 18 ms
6,820 KB
testcase_47 AC 28 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(a)  (a).begin(),(a).end()
#include <atcoder/all>
using namespace atcoder;
#define int long long
using ll = long long;
using P = pair<int,int>;
using mint = modint998244353;
int INF=1e18+1;

template <typename T> inline bool chmin(T& a, const T& b) {bool compare = a > b; if (a > b) a = b; return compare;}
template <typename T> inline bool chmax(T& a, const T& b) {bool compare = a < b; if (a < b) a = b; return compare;}
template <typename T> inline T lcm(T a, T b) {return (a * b) / gcd(a, b);}
template <typename T> inline T ceil(T a,T b) {return (a+(b-1))/b;}
template<class... T> inline void input(T&... a) { ((cin >> a), ...); }

int H, W;
vector<vector<char>> grid;
vector<vector<bool>> visited;

struct Position {
    int x, y;
};

const vector<Position> directions = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}};

bool is_in_grid(int x, int y) {
    return x >= 0 && x < H && y >= 0 && y < W;
}

vector<Position> dfs(int x, int y, char target_char) {
    vector<Position> component;
    stack<Position> stk;
    stk.push({x, y});
    visited[x][y] = true;

    while (!stk.empty()) {
        Position pos = stk.top();
        stk.pop();
        component.push_back(pos);

        for (const Position &dir : directions) {
            int nx = pos.x + dir.x;
            int ny = pos.y + dir.y;
            if (is_in_grid(nx, ny) && !visited[nx][ny] && grid[nx][ny] == target_char) {
                visited[nx][ny] = true;
                stk.push({nx, ny});
            }
        }
    }

    return component;
}

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

    input(H, W);
    grid.resize(H, vector<char>(W));
    visited.resize(H, vector<bool>(W, false));

    rep(i, H) {
        rep(j, W) {
            input(grid[i][j]);
        }
    }

    rep(i, H) {
        rep(j, W) {
            if (grid[i][j] != '.' && !visited[i][j]) {
                vector<Position> component = dfs(i, j, grid[i][j]);
                if (component.size() >= 4) {
                    for (const Position &pos : component) {
                        grid[pos.x][pos.y] = '.';
                    }
                }
            }
        }
    }

    rep(i, H) {
        rep(j, W) {
            cout << grid[i][j];
        }
        cout << endl;
    }
}
0