結果

問題 No.2946 Puyo
ユーザー InTheBloomInTheBloom
提出日時 2024-10-25 21:30:46
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,545 bytes
コンパイル時間 1,199 ms
コンパイル使用メモリ 102,128 KB
実行使用メモリ 13,112 KB
最終ジャッジ日時 2024-10-25 21:30:57
合計ジャッジ時間 4,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 67 ms
12,976 KB
testcase_04 AC 66 ms
13,068 KB
testcase_05 AC 68 ms
13,056 KB
testcase_06 AC 66 ms
13,112 KB
testcase_07 AC 66 ms
13,012 KB
testcase_08 AC 6 ms
6,820 KB
testcase_09 AC 23 ms
6,820 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 37 ms
8,064 KB
testcase_12 AC 6 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 10 ms
6,816 KB
testcase_15 AC 6 ms
6,816 KB
testcase_16 AC 13 ms
6,820 KB
testcase_17 AC 40 ms
8,192 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 19 ms
6,820 KB
testcase_20 AC 25 ms
6,820 KB
testcase_21 AC 42 ms
8,064 KB
testcase_22 AC 7 ms
6,824 KB
testcase_23 AC 25 ms
6,820 KB
testcase_24 AC 56 ms
9,216 KB
testcase_25 AC 49 ms
8,448 KB
testcase_26 AC 55 ms
9,088 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 32 ms
7,680 KB
testcase_29 AC 47 ms
9,728 KB
testcase_30 AC 25 ms
7,040 KB
testcase_31 AC 36 ms
8,704 KB
testcase_32 AC 37 ms
8,448 KB
testcase_33 AC 33 ms
7,936 KB
testcase_34 AC 50 ms
10,464 KB
testcase_35 AC 40 ms
9,032 KB
testcase_36 AC 43 ms
8,960 KB
testcase_37 AC 45 ms
9,316 KB
testcase_38 AC 32 ms
7,808 KB
testcase_39 AC 31 ms
7,424 KB
testcase_40 AC 21 ms
6,820 KB
testcase_41 AC 44 ms
9,344 KB
testcase_42 AC 39 ms
8,508 KB
testcase_43 AC 31 ms
7,808 KB
testcase_44 AC 35 ms
8,584 KB
testcase_45 AC 31 ms
7,808 KB
testcase_46 AC 20 ms
6,820 KB
testcase_47 AC 29 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <queue>

using namespace std;

int main () {
    int H, W; cin >> H >> W;
    vector<string> G(H);
    for (int i = 0; i < H; i++) cin >> G[i];

    vector<int> size(H * W);
    vector<vector<int>> vis(H, vector<int>(W, -1));

    auto is_in = [&] (int i, int j) {
        return 0 <= i && i < H && 0 <= j && j < W;
    };
    const auto dxy = vector<pair<int, int>>{
        make_pair(0, 1),
        make_pair(1, 0),
        make_pair(0, -1),
        make_pair(-1, 0),
    };

    queue<pair<int, int>> q;
    int cur = 0;
    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            if (vis[i][j] != -1) continue;
            q.push(make_pair(i, j));
            vis[i][j] = cur;
            size[cur]++;

            while (!q.empty()) {
                auto pos = q.front(); q.pop();
                int y = pos.first, x = pos.second;
                for (auto& d: dxy) {
                    int ny = y + d.first, nx = x + d.second;
                    if (is_in(ny, nx) && vis[ny][nx] == -1 && G[ny][nx] == G[y][x]) {
                        vis[ny][nx] = cur;
                        size[cur]++;
                        q.push(make_pair(ny, nx));
                    }
                }
            }

            cur++;
        }
    }

    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            char c = G[i][j];
            if (4 <= size[vis[i][j]]) c = '.';
            cout << c;
        }
        cout << "\n";
    }
}
0