結果

問題 No.2946 Puyo
ユーザー daiotadaiota
提出日時 2024-10-26 05:48:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,637 bytes
コンパイル時間 1,910 ms
コンパイル使用メモリ 170,728 KB
実行使用メモリ 16,136 KB
最終ジャッジ日時 2024-10-26 05:48:37
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,520 KB
testcase_01 AC 3 ms
7,520 KB
testcase_02 AC 2 ms
7,516 KB
testcase_03 AC 46 ms
16,088 KB
testcase_04 AC 46 ms
16,136 KB
testcase_05 AC 46 ms
16,132 KB
testcase_06 AC 45 ms
16,136 KB
testcase_07 AC 45 ms
16,128 KB
testcase_08 AC 6 ms
8,052 KB
testcase_09 AC 19 ms
9,772 KB
testcase_10 AC 7 ms
8,688 KB
testcase_11 AC 25 ms
15,152 KB
testcase_12 AC 6 ms
8,056 KB
testcase_13 AC 2 ms
7,520 KB
testcase_14 AC 9 ms
10,392 KB
testcase_15 AC 5 ms
7,828 KB
testcase_16 AC 10 ms
8,484 KB
testcase_17 AC 27 ms
14,412 KB
testcase_18 AC 3 ms
7,576 KB
testcase_19 AC 16 ms
11,928 KB
testcase_20 AC 20 ms
9,864 KB
testcase_21 AC 32 ms
15,592 KB
testcase_22 AC 7 ms
11,708 KB
testcase_23 AC 23 ms
10,204 KB
testcase_24 AC 69 ms
15,300 KB
testcase_25 AC 44 ms
14,956 KB
testcase_26 AC 49 ms
14,628 KB
testcase_27 AC 4 ms
9,700 KB
testcase_28 AC 33 ms
14,440 KB
testcase_29 AC 46 ms
14,944 KB
testcase_30 AC 26 ms
12,032 KB
testcase_31 AC 38 ms
14,616 KB
testcase_32 AC 38 ms
14,392 KB
testcase_33 AC 34 ms
15,120 KB
testcase_34 AC 47 ms
15,052 KB
testcase_35 AC 39 ms
14,564 KB
testcase_36 AC 41 ms
15,308 KB
testcase_37 AC 43 ms
14,796 KB
testcase_38 AC 30 ms
14,504 KB
testcase_39 AC 27 ms
14,272 KB
testcase_40 AC 19 ms
14,432 KB
testcase_41 AC 37 ms
14,840 KB
testcase_42 AC 33 ms
14,556 KB
testcase_43 AC 32 ms
15,412 KB
testcase_44 AC 37 ms
14,768 KB
testcase_45 AC 32 ms
14,592 KB
testcase_46 AC 22 ms
14,568 KB
testcase_47 AC 30 ms
14,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)




int par[1000010],rk[1000010],sz[1000010];

void init(int n){

	REP(i,n+1){
		par[i]=i;
		rk[i]=0;
		sz[i]=1;
	}
}

int find(int x){

	if(par[x]==x){
	   return x;
	}else{
	  return par[x]=find(par[x]);
	}
}

void unite(int x,int y){

	x=find(x); y=find(y);
	if(x==y) return;

	if(rk[x]<rk[y]){
		par[x]=y;
		sz[y]=sz[x]+sz[y];
	}else{
		par[y]=x;
		sz[x]=sz[x]+sz[y];
		if(rk[x]==rk[y]) rk[x]++;
	}
}

bool same(int x,int y){

	return find(x)==find(y);
}

int size(int x){

	return sz[find(x)];
}


int H,W;
char a[1010][1010];
int dx[]={1,0,-1,0};
int dy[]={0,1,0,-1};
bool inside(int i,int j){
return  1<=i && i<=H && 1<=j && j<=W;
}



int main(){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
    int i,j,k;



    cin >> H >> W;

    for(i=1;i<=H;i++){
    	for(j=1;j<=W;j++){
    		cin >> a[i][j];
    	}
    }


    init(H*W);


    for(i=1;i<=H;i++){
    	for(j=1;j<=W;j++){
    		if(a[i][j]=='.') continue;
            REP(k,4){
                int x=i+dx[k],y=j+dy[k];
                if(!inside(x,y)) continue;
                if(a[x][y]!=a[i][j]) continue;

                unite((i-1)*W+j,(x-1)*W+y);

            }
    	}
    }


      for(i=0;i<=H*W;i++) par[i]=find(par[i]);

      for(i=0;i<=H*W;i++){
    	  if(sz[par[i]]<4) continue;

    	  int y=i%W;
    	  if(y==0) y=W;
    	  int x=(i-y)/W+1;
    	  a[x][y]='.';

      }


      for(i=1;i<=H;i++){
       	for(j=1;j<=W;j++){
       		cout << a[i][j];
       	}
       	cout << endl;
      }





	return 0;

}


0