結果

問題 No.2946 Puyo
ユーザー t98slidert98slider
提出日時 2024-10-26 20:49:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,171 bytes
コンパイル時間 2,987 ms
コンパイル使用メモリ 212,936 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-26 20:49:08
合計ジャッジ時間 6,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 33 ms
6,820 KB
testcase_04 AC 33 ms
6,820 KB
testcase_05 AC 33 ms
6,820 KB
testcase_06 AC 33 ms
6,820 KB
testcase_07 AC 32 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 12 ms
6,816 KB
testcase_10 AC 4 ms
6,816 KB
testcase_11 AC 17 ms
6,816 KB
testcase_12 AC 4 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 6 ms
6,816 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 8 ms
6,816 KB
testcase_17 AC 23 ms
6,816 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 13 ms
6,820 KB
testcase_20 AC 16 ms
6,816 KB
testcase_21 AC 26 ms
6,820 KB
testcase_22 AC 5 ms
6,816 KB
testcase_23 AC 16 ms
6,820 KB
testcase_24 AC 34 ms
6,820 KB
testcase_25 AC 31 ms
6,816 KB
testcase_26 AC 34 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 20 ms
6,816 KB
testcase_29 AC 26 ms
6,820 KB
testcase_30 AC 16 ms
6,820 KB
testcase_31 AC 22 ms
6,820 KB
testcase_32 AC 23 ms
6,820 KB
testcase_33 AC 20 ms
6,820 KB
testcase_34 AC 28 ms
6,820 KB
testcase_35 AC 23 ms
6,820 KB
testcase_36 AC 24 ms
6,820 KB
testcase_37 AC 26 ms
6,820 KB
testcase_38 AC 18 ms
6,816 KB
testcase_39 AC 18 ms
6,816 KB
testcase_40 AC 11 ms
6,820 KB
testcase_41 AC 23 ms
6,820 KB
testcase_42 AC 21 ms
6,820 KB
testcase_43 AC 20 ms
6,816 KB
testcase_44 AC 24 ms
6,820 KB
testcase_45 AC 19 ms
6,820 KB
testcase_46 AC 12 ms
6,820 KB
testcase_47 AC 19 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w;
    cin >> h >> w;
    vector<string> A(h);
    cin >> A;
    vector B(h, vector<bool>(w));
    vector<pair<int,int>> vec;
    for(int y = 0; y < h; y++){
        for(int x = 0; x < w; x++){
            if(B[y][x]) continue;
            vec.clear();
            B[y][x] = true;
            vec.emplace_back(y, x);
            for(int i = 0; i < vec.size(); i++){
                auto [cy, cx] = vec[i];
                for(int i = 0; i < 4; i++){
                    int ny = cy + (i == 0) - (i == 1);
                    int nx = cx + (i == 2) - (i == 3);
                    if(ny < 0 || nx < 0 || ny >= h || nx >= w) continue;
                    if(A[y][x] != A[ny][nx] || B[ny][nx]) continue;
                    B[ny][nx] = true;
                    vec.emplace_back(ny, nx);
                }
            }
            if(vec.size() >= 4) for(auto [y, x] : vec) A[y][x] = '.';
        }
        cout << A[y] << '\n';
    }
}
0