結果

問題 No.2946 Puyo
ユーザー kakao745kakao745
提出日時 2024-10-25 21:27:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 4,746 bytes
コンパイル時間 6,904 ms
コンパイル使用メモリ 338,744 KB
実行使用メモリ 12,212 KB
最終ジャッジ日時 2024-10-25 21:27:19
合計ジャッジ時間 10,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 70 ms
12,160 KB
testcase_04 AC 71 ms
12,156 KB
testcase_05 AC 70 ms
12,212 KB
testcase_06 AC 72 ms
12,140 KB
testcase_07 AC 71 ms
12,144 KB
testcase_08 AC 8 ms
6,820 KB
testcase_09 AC 26 ms
6,816 KB
testcase_10 AC 7 ms
6,816 KB
testcase_11 AC 38 ms
7,680 KB
testcase_12 AC 7 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 12 ms
6,820 KB
testcase_15 AC 6 ms
6,816 KB
testcase_16 AC 15 ms
6,820 KB
testcase_17 AC 46 ms
8,320 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 24 ms
6,820 KB
testcase_20 AC 31 ms
6,824 KB
testcase_21 AC 49 ms
7,552 KB
testcase_22 AC 8 ms
6,820 KB
testcase_23 AC 30 ms
6,820 KB
testcase_24 AC 65 ms
8,880 KB
testcase_25 AC 59 ms
8,192 KB
testcase_26 AC 65 ms
8,704 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 44 ms
7,680 KB
testcase_29 AC 62 ms
9,600 KB
testcase_30 AC 35 ms
6,820 KB
testcase_31 AC 52 ms
8,448 KB
testcase_32 AC 51 ms
8,448 KB
testcase_33 AC 46 ms
7,680 KB
testcase_34 AC 64 ms
9,712 KB
testcase_35 AC 54 ms
8,576 KB
testcase_36 AC 55 ms
8,832 KB
testcase_37 AC 57 ms
9,352 KB
testcase_38 AC 41 ms
7,552 KB
testcase_39 AC 39 ms
7,424 KB
testcase_40 AC 25 ms
6,820 KB
testcase_41 AC 52 ms
9,016 KB
testcase_42 AC 48 ms
8,448 KB
testcase_43 AC 42 ms
7,424 KB
testcase_44 AC 51 ms
8,320 KB
testcase_45 AC 42 ms
7,552 KB
testcase_46 AC 28 ms
6,820 KB
testcase_47 AC 41 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define itn int
#define rep(i,n) for(long long i=0;i<(long long)n;i++)
#define reps(i,n) for(long long i=1;i<=(long long)n;i++)
#define repi(i,n) for(int i=0;i<(int)n;i++)
#define loop(i,l,r) for(long long i=(long long)l;i<=(long long)r;i++)
#define loopi(i,l,r) for(int i=(int)l;i<=(int)r;i++)
#define drep(i,n) for(long long i=(long long)n-1;i>=0;i--)
#define drepi(i,n) for(int i=(int)n-1;i>=0;i--)
#define dreps(i,n) for(int i=(int)n;i>=1;i--)
#define dloop(i,l,r) for(long long i=(long long)l;i>=(long long)r;i--)
#define dloopi(i,l,r) for(int i=(int)l;i>=(int)r;i--)
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define yn(x) cout << (x? "Yes":"No") << endl;
#define cou(x) cout << x << endl;
#define emp emplace_back
#pragma GCC target ("avx,avx2")//四則演算
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")//ループ
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")//浮動小数点
const long long mod=998244353LL;
const long long mods=1000000007LL;
const double inf=numeric_limits<double>::infinity();
const int kaz=1000000005;
const long long yab=2500000000000000000LL;
const long long aho =-yab;
const long double eps=1.0e-14L;
const long double pi=acosl(-1.0L);
using ll=long long;
using st=string;
using P=pair<ll,ll>;
using tup=tuple<ll,ll,ll>;
using vi=vector<ll>;
using vin=vector<int>;
using vc=vector<char>;
using vb=vector<bool>;
using vd=vector<double>;
using vs=vector<string>;
using vp=vector<P>;
using sp=set<P>;
using si=set<ll>;
using vvi=vector<vector<ll>>;
using vvin=vector<vin>;
using vvc=vector<vc>;
using vvb=vector<vb>;
using vvvi=vector<vvi>;
using vvvin=vector<vvin>;
const int dx[4]={0,1,0,-1};
const int dy[4]={1,0,-1,0};
const vector<int> ex = {-1, -1, -1, 0, 0, 1, 1, 1};
const vector<int> ey = {-1, 0, 1, -1, 1, -1, 0, 1};
template<typename T>istream&operator>>(istream&is,vector<T>&v){for(T&in:v)is>>in;return is;}
template<typename T>ostream&operator<<(ostream&os,vector<T>v){rep(i,v.size())os<<v[i]<<(i+1!=v.size()?" ":"\n");return os;}
template<typename T1,typename T2>
void co(bool x,T1 y,T2 z){
  if(x)cout << y << endl;
  else cout << z << endl;
}
template<typename T>
bool chmax(T &a, T b){
	if(a<b){
		a=b;
		return true;
	}
	return false;
}
template <typename T, typename U>
T ceil(T x, U y) {
  return (x > 0 ? (x + y - 1) / y : x / y);
}

template <typename T, typename U>
T floor(T x, U y) {
  return (x > 0 ? x / y : (x - y + 1) / y);
}
template<typename T>
bool chmin(T &a, T b){
	if(a>b){
		a=b;
		return true;
	}
	return false;
}
template<typename T>
void print(vector<T> &a){
	for(int i=0;i<a.size();i++){
		cout << a[i];
		if(i==(long long)a.size()-1)cout << endl;
		else cout << " ";
	}
}
template<typename T>
void her(vector<T> &a){
  for(auto &g:a)g--;
}
vector<long long> fac,finv,invs;
// テーブルを作る前処理
void COMinit(int MAX,int MOD) {
	fac.resize(MAX);
	finv.resize(MAX);
	invs.resize(MAX);
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    invs[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % MOD;
        invs[i] = MOD - invs[MOD%i] * (MOD / i) % MOD;
        finv[i] = finv[i - 1] * invs[i] % MOD;
    }
}

// 二項係数計算
long long COM(int n, int k,int MOD){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}
ll mypow(ll x,ll y){
	ll ret=1;
	while(y>0){
		if(y&1)ret=ret*x%mod;
		x=x*x%mod;
		y>>=1;
	}
	return ret;
}
ll nopow(ll x,ll y){
	ll ret=1;
	while(y>0){
		if(y&1)ret*=x;
		x*=x;
		y>>=1;
	}
	return ret;
}
#include <atcoder/all>
using namespace atcoder;
using minta=modint998244353;
using mintb=modint1000000007;
struct UnionFind {
    vector<int> par,siz;
    UnionFind(int n) : par(n,-1), siz(n,1) { }
    int root(int x) {
      if(par[x]==-1)return x; 
      else return par[x]=root(par[x]); 
    }
    bool same(int x, int y) {
      return root(x)==root(y);
    }
    bool marge(int x, int y) {
      int rx = root(x), ry = root(y); 
      if (rx==ry) return false; 
			if(siz[rx]<siz[ry])swap(rx,ry);
			//log N leader=min
			//if(rx>ry)swap(rx,ry);
      par[ry] = rx;
      siz[rx] += siz[ry];
      return true;
    }
    int size(int x) {
      return siz[root(x)];
    }
};
int main(){
	cin.tie(nullptr);
	int h,w;
	cin >> h >> w;
	vvc a(h,vc(w));
	cin >> a;
	UnionFind uf(h*w);
	rep(i,h){
		rep(j,w){
			rep(k,4){
				if(i+dx[k]<0 or i+dx[k]>=h or j+dy[k]<0 or j+dy[k]>=w)continue;
				if(a[i+dx[k]][j+dy[k]]==a[i][j])uf.marge(i*w+j,(i+dx[k])*w+j+dy[k]);
			}
		}
	}
	rep(i,h){
		rep(j,w){
			if(uf.size(uf.root(i*w+j))>=4)a[i][j]='.';
		}
	}
	rep(i,h){
		rep(j,w){
			cout << a[i][j];
		}
		cout << endl;
	}
}
0