結果

問題 No.2946 Puyo
ユーザー HanabishiHanabishi
提出日時 2024-11-10 02:39:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,569 bytes
コンパイル時間 1,292 ms
コンパイル使用メモリ 104,144 KB
実行使用メモリ 118,856 KB
最終ジャッジ日時 2024-11-10 02:39:21
合計ジャッジ時間 8,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 242 ms
118,856 KB
testcase_04 AC 227 ms
118,844 KB
testcase_05 AC 232 ms
118,824 KB
testcase_06 AC 237 ms
118,708 KB
testcase_07 AC 229 ms
118,788 KB
testcase_08 AC 17 ms
11,260 KB
testcase_09 AC 73 ms
44,576 KB
testcase_10 AC 15 ms
9,808 KB
testcase_11 AC 109 ms
61,448 KB
testcase_12 AC 17 ms
10,784 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 27 ms
14,932 KB
testcase_15 AC 13 ms
8,776 KB
testcase_16 AC 41 ms
23,788 KB
testcase_17 AC 132 ms
61,976 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 48 ms
21,284 KB
testcase_20 AC 58 ms
28,916 KB
testcase_21 AC 95 ms
43,180 KB
testcase_22 AC 13 ms
8,316 KB
testcase_23 AC 49 ms
21,968 KB
testcase_24 AC 113 ms
47,872 KB
testcase_25 AC 100 ms
42,040 KB
testcase_26 AC 108 ms
46,680 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 34 ms
25,300 KB
testcase_29 AC 49 ms
35,064 KB
testcase_30 AC 29 ms
20,684 KB
testcase_31 AC 43 ms
29,568 KB
testcase_32 AC 48 ms
30,848 KB
testcase_33 AC 46 ms
27,504 KB
testcase_34 AC 68 ms
39,616 KB
testcase_35 AC 67 ms
35,652 KB
testcase_36 AC 75 ms
37,764 KB
testcase_37 AC 90 ms
45,876 KB
testcase_38 AC 81 ms
37,696 KB
testcase_39 AC 78 ms
37,532 KB
testcase_40 AC 56 ms
29,668 KB
testcase_41 AC 109 ms
57,848 KB
testcase_42 AC 105 ms
55,656 KB
testcase_43 AC 33 ms
23,720 KB
testcase_44 AC 40 ms
29,460 KB
testcase_45 AC 34 ms
24,572 KB
testcase_46 AC 20 ms
16,616 KB
testcase_47 AC 32 ms
24,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
#define rep(i,a,n) for(int i=(a);i<(n);i++)

//Union-Find
struct UnionFind{
    vector<int> par, rank, siz; 
    UnionFind(int n) : par(n, -1), rank(n, 0), 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 unite(int x, int y){
        int rx = root(x), ry = root(y);
        if(rx == ry) return false; 
        if(rank[rx] < rank[ry]) swap(rx, ry); 
        par[ry] = rx; 
        if(rank[rx] == rank[ry]) rank[rx]++; 
        siz[rx] += siz[ry]; 
        return true;
    }
    int size(int x) {
        return siz[root(x)];
    }
	vector<vector<int>> group(){
		vector<vector<int>> tmp(par.size());
		for(int i = 0; i < (int)par.size(); i++) tmp[root(i)].push_back(i);
		vector<vector<int>> ans;
		for(vector<int> p : tmp) if(!p.empty()) ans.push_back(p);
		return ans;
	}
};
int h, w;
string g[1000];
int d[5] = {0, 1, 0, -1, 0};
int main(){
	ios::sync_with_stdio(false);	
	cin.tie(nullptr);
	
	cin >> h >> w;
	UnionFind uf(h*w);
	for(int i=0; i<h; i++) cin >> g[i];
	for(int i=0; i<h; i++) for(int j=0; j<w; j++){
		for(int k=0; k<4; k++){
			int x=i+d[k], y=j+d[k+1];
			if(!(0<=x&&x<h&&0<=y&&y<w)) continue;
			if(g[i][j]==g[x][y]) uf.unite(i*w+j, x*w+y); 
		}
	}
	for(vector<int> v : uf.group()){
		if(v.size()<4) continue;
		for(int p : v) g[p/w][p%w] = '.';
	}
	for(int i=0; i<h; i++) cout << g[i] << endl;
}
0