結果

問題 No.2946 Puyo
ユーザー VvyLwVvyLw
提出日時 2024-10-26 11:42:11
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 1,455 bytes
コンパイル時間 5,485 ms
コンパイル使用メモリ 129,720 KB
実行使用メモリ 8,304 KB
最終ジャッジ日時 2024-10-26 11:42:20
合計ジャッジ時間 6,565 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 23 ms
8,228 KB
testcase_04 AC 23 ms
8,260 KB
testcase_05 AC 22 ms
8,180 KB
testcase_06 AC 24 ms
8,196 KB
testcase_07 AC 22 ms
8,304 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 9 ms
6,820 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 13 ms
6,820 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 5 ms
6,816 KB
testcase_17 AC 14 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 10 ms
6,816 KB
testcase_20 AC 12 ms
6,816 KB
testcase_21 AC 19 ms
6,820 KB
testcase_22 AC 5 ms
6,820 KB
testcase_23 AC 13 ms
6,820 KB
testcase_24 AC 29 ms
6,816 KB
testcase_25 AC 26 ms
6,816 KB
testcase_26 AC 29 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 16 ms
6,816 KB
testcase_29 AC 21 ms
6,820 KB
testcase_30 AC 12 ms
6,816 KB
testcase_31 AC 18 ms
6,816 KB
testcase_32 AC 18 ms
6,816 KB
testcase_33 AC 16 ms
6,816 KB
testcase_34 AC 23 ms
6,912 KB
testcase_35 AC 20 ms
6,816 KB
testcase_36 AC 21 ms
6,816 KB
testcase_37 AC 23 ms
6,816 KB
testcase_38 AC 16 ms
6,816 KB
testcase_39 AC 15 ms
6,820 KB
testcase_40 AC 10 ms
6,816 KB
testcase_41 AC 19 ms
6,816 KB
testcase_42 AC 17 ms
6,816 KB
testcase_43 AC 15 ms
6,816 KB
testcase_44 AC 18 ms
6,820 KB
testcase_45 AC 15 ms
6,816 KB
testcase_46 AC 10 ms
6,820 KB
testcase_47 AC 15 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#ifdef local
#include <C++/core/io/debug_print.hpp>
#else
#define dump(...) void(0);
#endif

#include <iostream>
#include <ranges>
#include <cassert>
#include <atcoder/dsu>
namespace man {
constexpr inline bool scope(const int l, const int x, const int r) noexcept { return l <= x && x < r; }
}
int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    using namespace std::views;
    int h, w;
    std::cin >> h >> w;
    std::vector<std::string> g(h);
    for(auto &t: g) {
        std::cin >> t;
        assert(std::ssize(t) == w);
    }
    const auto encrypt = [&w](const int i, const int j) -> int { return i * w + j; };
    atcoder::dsu uf(h * w);
    for(const auto i: iota(0, h)) {
        for(const auto j: iota(0, w)) {
            if(g[i][j] == '.') {
                continue;
            }
            if(man::scope(0, i + 1, h) && g[i][j] == g[i + 1][j]) {
                uf.merge(encrypt(i, j), encrypt(i + 1, j));
            }
            if(man::scope(0, j + 1, w) && g[i][j] == g[i][j + 1]) {
                uf.merge(encrypt(i, j), encrypt(i, j + 1));
            }
        }
    }
    for(const auto i: iota(0, h)) {
        for(const auto j: iota(0, w)) {
            std::cout << (uf.size(encrypt(i, j)) >= 4 ? '.' : g[i][j]);
        }
        std::cout << '\n';
    }
}
0