結果

問題 No.2946 Puyo
ユーザー zawakasuzawakasu
提出日時 2024-10-25 21:27:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 88,836 KB
実行使用メモリ 25,496 KB
最終ジャッジ日時 2024-10-25 21:27:32
合計ジャッジ時間 4,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 58 ms
6,820 KB
testcase_04 AC 58 ms
6,820 KB
testcase_05 AC 59 ms
6,816 KB
testcase_06 AC 62 ms
6,816 KB
testcase_07 AC 59 ms
6,816 KB
testcase_08 AC 6 ms
6,820 KB
testcase_09 AC 20 ms
6,816 KB
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 31 ms
6,820 KB
testcase_12 AC 6 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 9 ms
6,816 KB
testcase_15 AC 5 ms
6,820 KB
testcase_16 AC 13 ms
6,816 KB
testcase_17 AC 37 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 18 ms
6,816 KB
testcase_20 AC 23 ms
6,816 KB
testcase_21 AC 38 ms
6,820 KB
testcase_22 AC 6 ms
6,820 KB
testcase_23 AC 22 ms
6,820 KB
testcase_24 AC 50 ms
6,820 KB
testcase_25 AC 44 ms
6,820 KB
testcase_26 AC 49 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 29 ms
12,448 KB
testcase_29 AC 36 ms
10,780 KB
testcase_30 AC 22 ms
9,472 KB
testcase_31 AC 31 ms
10,744 KB
testcase_32 AC 29 ms
6,816 KB
testcase_33 AC 25 ms
6,816 KB
testcase_34 AC 38 ms
6,816 KB
testcase_35 AC 32 ms
6,816 KB
testcase_36 AC 34 ms
6,820 KB
testcase_37 AC 38 ms
6,816 KB
testcase_38 AC 29 ms
6,820 KB
testcase_39 AC 27 ms
6,816 KB
testcase_40 AC 18 ms
6,816 KB
testcase_41 AC 38 ms
6,820 KB
testcase_42 AC 35 ms
6,816 KB
testcase_43 AC 37 ms
22,420 KB
testcase_44 AC 44 ms
25,496 KB
testcase_45 AC 31 ms
15,152 KB
testcase_46 AC 16 ms
6,820 KB
testcase_47 AC 24 ms
8,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cassert>
#include <vector>
#include <string>

int dx[4]{ 0, 1, 0, -1 }, dy[4]{ 1, 0, -1, 0 };

int main() {
    std::cin.tie(nullptr)->sync_with_stdio(false);

    int H, W;
    std::cin >> H >> W;
    std::vector<std::string> S(H);
    for (auto& s : S) std::cin >> s;
    std::vector vis(H, std::vector<bool>(W));
    auto in{[&](int x, int y) -> bool {
        return 0 <= x and x < H and 0 <= y and y < W;
    }};
    auto dfs{[&](auto dfs, int x, int y, std::vector<std::pair<int, int>>& vs) -> void {
        vs.push_back(std::pair{ x, y });
        vis[x][y] = true;
        for (int d{} ; d < 4 ; d++) {
            int nx{dx[d] + x}, ny{dy[d] + y};
            if (!in(nx, ny)) continue;
            if (vis[nx][ny]) continue;
            if (S[x][y] != S[nx][ny]) continue;
            dfs(dfs, nx, ny, vs);
        }
    }};
    for (int i{} ; i < H ; i++) for (int j{} ; j < W ; j++) if (!vis[i][j]) {
        std::vector<std::pair<int, int>> vs;
        dfs(dfs, i, j, vs);
        if (vs.size() >= 4u) {
            for (auto [x, y] : vs) S[x][y] = '.';
        }
    }
    for (const auto& s : S) std::cout << s << '\n';
}
0