結果

問題 No.2946 Puyo
ユーザー 沙耶花沙耶花
提出日時 2024-10-25 21:22:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 4,351 ms
コンパイル使用メモリ 265,060 KB
実行使用メモリ 9,232 KB
最終ジャッジ日時 2024-10-25 21:22:41
合計ジャッジ時間 7,374 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 33 ms
9,104 KB
testcase_04 AC 33 ms
9,220 KB
testcase_05 AC 33 ms
9,232 KB
testcase_06 AC 32 ms
9,080 KB
testcase_07 AC 33 ms
9,160 KB
testcase_08 AC 5 ms
6,824 KB
testcase_09 AC 13 ms
6,816 KB
testcase_10 AC 5 ms
6,820 KB
testcase_11 AC 17 ms
6,816 KB
testcase_12 AC 5 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 6 ms
6,820 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 8 ms
6,820 KB
testcase_17 AC 21 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 13 ms
6,820 KB
testcase_20 AC 16 ms
6,820 KB
testcase_21 AC 27 ms
6,820 KB
testcase_22 AC 5 ms
6,816 KB
testcase_23 AC 17 ms
6,816 KB
testcase_24 AC 38 ms
6,816 KB
testcase_25 AC 33 ms
6,816 KB
testcase_26 AC 36 ms
6,820 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 25 ms
6,816 KB
testcase_29 AC 33 ms
6,944 KB
testcase_30 AC 20 ms
6,820 KB
testcase_31 AC 29 ms
6,816 KB
testcase_32 AC 29 ms
6,820 KB
testcase_33 AC 25 ms
6,820 KB
testcase_34 AC 36 ms
7,552 KB
testcase_35 AC 29 ms
7,040 KB
testcase_36 AC 31 ms
6,820 KB
testcase_37 AC 31 ms
6,820 KB
testcase_38 AC 23 ms
6,816 KB
testcase_39 AC 21 ms
6,816 KB
testcase_40 AC 13 ms
6,816 KB
testcase_41 AC 27 ms
6,816 KB
testcase_42 AC 23 ms
6,820 KB
testcase_43 AC 23 ms
6,820 KB
testcase_44 AC 28 ms
6,816 KB
testcase_45 AC 23 ms
6,820 KB
testcase_46 AC 16 ms
6,820 KB
testcase_47 AC 24 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

int main(){
	
	int h,w;
	cin>>h>>w;
	vector<string> s(h);
	rep(i,h)cin>>s[i];
	dsu D(h*w);
	rep(i,h){
		rep(j,w){
			if(j!=w-1 && s[i][j]!='.' && s[i][j]==s[i][j+1])D.merge(i*w+j,i*w+j+1);
			if(i!=h-1 && s[i][j]!='.' && s[i][j]==s[i+1][j])D.merge(i*w+j,(i+1)*w+j);
		}
	}
	rep(i,h){
		rep(j,w){
			if(D.size(i*w+j)>=4)s[i][j] = '.';
		}
	}
	rep(i,h)cout<<s[i]<<endl;
	
	return 0;
}
0