結果
問題 | No.2946 Puyo |
ユーザー | daiota |
提出日時 | 2024-10-26 05:46:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,634 bytes |
コンパイル時間 | 2,418 ms |
コンパイル使用メモリ | 170,468 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-26 05:46:51 |
合計ジャッジ時間 | 9,049 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 5 ms
6,816 KB |
testcase_09 | RE | - |
testcase_10 | AC | 6 ms
6,816 KB |
testcase_11 | RE | - |
testcase_12 | AC | 6 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | RE | - |
testcase_15 | AC | 4 ms
6,824 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 3 ms
6,816 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 6 ms
6,816 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 3 ms
6,816 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
ソースコード
#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[100010],rk[100010],sz[100010]; 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; }