結果

問題 No.2946 Puyo
ユーザー kwm_tkwm_t
提出日時 2024-10-26 18:14:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,518 bytes
コンパイル時間 5,802 ms
コンパイル使用メモリ 315,444 KB
実行使用メモリ 68,316 KB
最終ジャッジ日時 2024-10-26 18:14:54
合計ジャッジ時間 10,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 128 ms
68,240 KB
testcase_04 AC 126 ms
68,316 KB
testcase_05 AC 153 ms
68,252 KB
testcase_06 AC 127 ms
68,284 KB
testcase_07 AC 128 ms
68,292 KB
testcase_08 AC 11 ms
7,808 KB
testcase_09 AC 41 ms
23,924 KB
testcase_10 AC 10 ms
6,816 KB
testcase_11 AC 62 ms
35,996 KB
testcase_12 AC 11 ms
7,552 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 16 ms
9,728 KB
testcase_15 AC 9 ms
6,820 KB
testcase_16 AC 22 ms
13,432 KB
testcase_17 AC 73 ms
37,496 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 30 ms
14,920 KB
testcase_20 AC 39 ms
18,360 KB
testcase_21 AC 61 ms
28,988 KB
testcase_22 AC 10 ms
6,820 KB
testcase_23 AC 32 ms
16,196 KB
testcase_24 AC 75 ms
33,920 KB
testcase_25 AC 62 ms
29,880 KB
testcase_26 AC 69 ms
33,048 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 30 ms
22,760 KB
testcase_29 AC 41 ms
31,464 KB
testcase_30 AC 24 ms
18,332 KB
testcase_31 AC 35 ms
26,232 KB
testcase_32 AC 36 ms
26,496 KB
testcase_33 AC 33 ms
23,492 KB
testcase_34 AC 48 ms
33,300 KB
testcase_35 AC 42 ms
28,616 KB
testcase_36 AC 45 ms
30,076 KB
testcase_37 AC 54 ms
34,064 KB
testcase_38 AC 45 ms
26,504 KB
testcase_39 AC 44 ms
26,208 KB
testcase_40 AC 32 ms
19,264 KB
testcase_41 AC 59 ms
36,776 KB
testcase_42 AC 64 ms
34,760 KB
testcase_43 AC 26 ms
21,500 KB
testcase_44 AC 33 ms
26,064 KB
testcase_45 AC 28 ms
21,996 KB
testcase_46 AC 18 ms
15,060 KB
testcase_47 AC 27 ms
21,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n) - 1; i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int h, w; cin >> h >> w;
	dsu uf(h * w);
	vector<string>s(h);
	rep(i, h)cin >> s[i];
	rep(i, h)rep(j, w) {
		if (i != h - 1) {
			int ni = i + 1;
			int nj = j + 0;
			int x = i * w + j;
			int y = ni * w + nj;
			if (s[i][j] == s[ni][nj]) {
				uf.merge(x, y);
			}
		}
		if (j != w - 1) {
			int ni = i + 0;
			int nj = j + 1;
			int x = i * w + j;
			int y = ni * w + nj;
			if (s[i][j] == s[ni][nj]) {
				uf.merge(x, y);
			}
		}
	}
	auto g = uf.groups();
	for (auto g : g) {
		if (g.size() < 4)continue;
		for (auto e : g) {
			int x = e / w;
			int y = e % w;
			s[x][y] = '.';
		}
	}
	rep(i, h)cout << s[i] << endl;
	return 0;
}
0