結果

問題 No.2946 Puyo
ユーザー askr58askr58
提出日時 2024-10-25 22:07:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 5,481 ms
コンパイル使用メモリ 319,280 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-10-25 22:07:41
合計ジャッジ時間 10,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 113 ms
6,816 KB
testcase_04 AC 114 ms
6,816 KB
testcase_05 AC 115 ms
6,816 KB
testcase_06 AC 114 ms
6,816 KB
testcase_07 AC 112 ms
6,816 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 38 ms
6,816 KB
testcase_10 AC 9 ms
6,816 KB
testcase_11 AC 58 ms
6,816 KB
testcase_12 AC 10 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 15 ms
6,816 KB
testcase_15 AC 8 ms
6,816 KB
testcase_16 AC 22 ms
6,820 KB
testcase_17 AC 66 ms
6,820 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 31 ms
6,816 KB
testcase_20 AC 39 ms
6,816 KB
testcase_21 AC 64 ms
6,816 KB
testcase_22 AC 10 ms
6,820 KB
testcase_23 AC 38 ms
6,820 KB
testcase_24 AC 85 ms
6,820 KB
testcase_25 AC 75 ms
6,816 KB
testcase_26 AC 84 ms
6,816 KB
testcase_27 AC 4 ms
6,820 KB
testcase_28 AC 100 ms
7,296 KB
testcase_29 AC 135 ms
6,816 KB
testcase_30 AC 73 ms
6,816 KB
testcase_31 AC 101 ms
6,816 KB
testcase_32 AC 87 ms
6,820 KB
testcase_33 AC 65 ms
6,816 KB
testcase_34 AC 96 ms
6,816 KB
testcase_35 AC 73 ms
6,816 KB
testcase_36 AC 74 ms
6,816 KB
testcase_37 AC 77 ms
6,816 KB
testcase_38 AC 55 ms
6,820 KB
testcase_39 AC 50 ms
6,816 KB
testcase_40 AC 34 ms
6,820 KB
testcase_41 AC 73 ms
6,820 KB
testcase_42 AC 64 ms
6,820 KB
testcase_43 AC 137 ms
10,880 KB
testcase_44 AC 162 ms
12,416 KB
testcase_45 AC 109 ms
8,320 KB
testcase_46 AC 57 ms
6,820 KB
testcase_47 AC 80 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;

int main()
{
    int h,w;
    cin>>h>>w;
    vector<string> grid(h);
    for(int i=0;i<h;i++)cin>>grid[i];
    vector<vector<bool>> seen(h,vector<bool>(w));
    int dx[4]={1,0,-1,0},dy[4]={0,1,0,-1};
    for(int i=0;i<h;i++)for(int j=0;j<w;j++){
        if(seen[i][j])continue;
        seen[i][j]=true;
        queue<int> bfs;
        bfs.push(i*w+j);
        set<int> s;
        while(!bfs.empty()){
            int x=bfs.front()/w,y=bfs.front()%w;
            s.insert(bfs.front());
            bfs.pop();
            for(int k=0;k<4;k++){
                int nx=x+dx[k],ny=y+dy[k];
                if(nx<0||nx>=h||ny<0||ny>=w||grid[x][y]!=grid[nx][ny]||seen[nx][ny])continue;
                seen[nx][ny]=true;
                bfs.push(nx*w+ny);
            }

        }if(s.size()>=4)for(int v:s)grid[v/w][v%w]='.';
    }
    for(int i=0;i<h;i++)cout<<grid[i]<<endl;
}
0