結果

問題 No.2946 Puyo
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-10-25 22:35:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 1,055 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 215,404 KB
実行使用メモリ 13,256 KB
最終ジャッジ日時 2024-10-25 22:36:01
合計ジャッジ時間 7,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 133 ms
12,488 KB
testcase_04 AC 134 ms
13,128 KB
testcase_05 AC 133 ms
12,868 KB
testcase_06 AC 135 ms
13,256 KB
testcase_07 AC 134 ms
12,748 KB
testcase_08 AC 12 ms
6,816 KB
testcase_09 AC 46 ms
7,104 KB
testcase_10 AC 10 ms
6,820 KB
testcase_11 AC 69 ms
7,988 KB
testcase_12 AC 11 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 16 ms
6,820 KB
testcase_15 AC 8 ms
6,820 KB
testcase_16 AC 23 ms
6,824 KB
testcase_17 AC 73 ms
8,260 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 30 ms
6,816 KB
testcase_20 AC 39 ms
6,816 KB
testcase_21 AC 65 ms
6,908 KB
testcase_22 AC 10 ms
6,816 KB
testcase_23 AC 38 ms
6,816 KB
testcase_24 AC 85 ms
7,508 KB
testcase_25 AC 73 ms
7,204 KB
testcase_26 AC 82 ms
7,496 KB
testcase_27 AC 3 ms
6,824 KB
testcase_28 AC 45 ms
6,820 KB
testcase_29 AC 65 ms
7,168 KB
testcase_30 AC 36 ms
6,816 KB
testcase_31 AC 54 ms
6,820 KB
testcase_32 AC 56 ms
6,816 KB
testcase_33 AC 48 ms
6,820 KB
testcase_34 AC 70 ms
7,276 KB
testcase_35 AC 61 ms
6,912 KB
testcase_36 AC 64 ms
6,940 KB
testcase_37 AC 73 ms
7,828 KB
testcase_38 AC 55 ms
6,820 KB
testcase_39 AC 54 ms
6,820 KB
testcase_40 AC 37 ms
6,820 KB
testcase_41 AC 76 ms
8,692 KB
testcase_42 AC 71 ms
8,256 KB
testcase_43 AC 44 ms
6,820 KB
testcase_44 AC 55 ms
6,912 KB
testcase_45 AC 46 ms
6,820 KB
testcase_46 AC 29 ms
6,820 KB
testcase_47 AC 43 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int H, W;
	cin >> H >> W;
	std::vector A(H + 2, vector(W + 2, '#')) ;
	for (int i = 1; i <= H; i++) {
		for (int j = 1; j <= W; j ++) {
			cin >> A[i][j];
		}
	}
	vector<vector<int>> did(H + 2, vector(W + 2, -1));
	vector<int> siz;
	for (int i = 1; i <= H; i ++) {
		for (int j = 1; j <= W; j ++) {
			if (did[i][j] >= 0 || (A[i][j] == '.')) continue;
			char c = A[i][j];
			int mi[] = {0, 1, 0, -1}, mj[] = {1, 0, -1, 0};
			stack<pair<int, int>> st;
			st.emplace(i, j);
			int n = 1;
			did[i][j] = siz.size();
			while (!st.empty()) {
				auto [p, q] = st.top();
				st.pop();
				for (int d = 0; d < 4; d ++) {
					int r = p + mi[d], s = q + mj[d];
					if (A[r][s] == c && did[r][s] < 0) {
						did[r][s] = did[i][j];
						st.emplace(r, s);
						n ++;
					}
				}
			}
			siz.push_back(n);
		}
	}
	for (int i = 1; i <= H; i ++) {
		for (int j = 1; j <= W; j ++) {
			if (did[i][j] < 0) cout << A[i][j];
			else cout << (siz[did[i][j]] >= 4 ? '.' : A[i][j]);
		}
		cout << endl;
	}
}
0