結果

問題 No.2946 Puyo
ユーザー Today03Today03
提出日時 2024-10-25 21:29:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 3,408 ms
コンパイル使用メモリ 258,384 KB
実行使用メモリ 13,140 KB
最終ジャッジ日時 2024-10-25 21:29:17
合計ジャッジ時間 7,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 105 ms
13,032 KB
testcase_04 AC 109 ms
12,936 KB
testcase_05 AC 103 ms
13,104 KB
testcase_06 AC 103 ms
13,060 KB
testcase_07 AC 111 ms
13,140 KB
testcase_08 AC 10 ms
6,820 KB
testcase_09 AC 36 ms
6,820 KB
testcase_10 AC 9 ms
6,820 KB
testcase_11 AC 54 ms
7,936 KB
testcase_12 AC 9 ms
6,820 KB
testcase_13 AC 2 ms
6,824 KB
testcase_14 AC 14 ms
6,820 KB
testcase_15 AC 7 ms
6,820 KB
testcase_16 AC 20 ms
6,820 KB
testcase_17 AC 61 ms
8,192 KB
testcase_18 AC 3 ms
6,824 KB
testcase_19 AC 26 ms
6,820 KB
testcase_20 AC 35 ms
6,816 KB
testcase_21 AC 57 ms
8,192 KB
testcase_22 AC 9 ms
6,816 KB
testcase_23 AC 32 ms
6,820 KB
testcase_24 AC 72 ms
9,216 KB
testcase_25 AC 63 ms
8,576 KB
testcase_26 AC 69 ms
8,960 KB
testcase_27 AC 3 ms
6,824 KB
testcase_28 AC 34 ms
7,680 KB
testcase_29 AC 51 ms
9,856 KB
testcase_30 AC 27 ms
7,040 KB
testcase_31 AC 39 ms
8,568 KB
testcase_32 AC 41 ms
8,576 KB
testcase_33 AC 36 ms
7,808 KB
testcase_34 AC 52 ms
10,496 KB
testcase_35 AC 45 ms
9,088 KB
testcase_36 AC 48 ms
9,088 KB
testcase_37 AC 54 ms
9,472 KB
testcase_38 AC 42 ms
7,936 KB
testcase_39 AC 40 ms
7,424 KB
testcase_40 AC 29 ms
6,820 KB
testcase_41 AC 57 ms
9,216 KB
testcase_42 AC 56 ms
8,448 KB
testcase_43 AC 33 ms
7,680 KB
testcase_44 AC 40 ms
8,704 KB
testcase_45 AC 33 ms
7,680 KB
testcase_46 AC 21 ms
6,816 KB
testcase_47 AC 31 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
const int INF=1e9+10;
const ll INFL=4e18;



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

	int id=-1;
	vector<vector<int>>par(H,vector<int>(W,-1));
	vector<int>sz(H*W,0);
	for(int i=0;i<H;i++)for(int j=0;j<W;j++){
		if(par[i][j]!=-1)continue;
		par[i][j]=++id;
		queue<pair<int,int>>que;
		que.push({i,j});
		while(!que.empty()){
			auto[x,y]=que.front();que.pop();
			sz[id]++;
			for(auto[dx,dy]:{pair{0,1},{1,0},{0,-1},{-1,0}}){
				int nx=x+dx,ny=y+dy;
				if(nx<0||nx>=H||ny<0||ny>=W)continue;
				if(par[nx][ny]!=-1)continue;
				if(S[nx][ny]!=S[x][y])continue;
				par[nx][ny]=id;
				que.push({nx,ny});
			}
		}
	}

	for(int i=0;i<H;i++){
		for(int j=0;j<W;j++){
			if(sz[par[i][j]]>=4)cout<<'.';
			else cout<<S[i][j];
		}
		cout<<endl;
	}
}
0