結果

問題 No.2946 Puyo
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-26 00:09:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 2,860 ms
コンパイル使用メモリ 217,640 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-26 00:09:26
合計ジャッジ時間 7,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 93 ms
6,816 KB
testcase_04 AC 94 ms
6,820 KB
testcase_05 AC 94 ms
6,816 KB
testcase_06 AC 94 ms
6,816 KB
testcase_07 AC 93 ms
6,820 KB
testcase_08 AC 8 ms
6,820 KB
testcase_09 AC 31 ms
6,820 KB
testcase_10 AC 8 ms
6,820 KB
testcase_11 AC 48 ms
6,820 KB
testcase_12 AC 8 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 12 ms
6,820 KB
testcase_15 AC 6 ms
6,820 KB
testcase_16 AC 18 ms
6,816 KB
testcase_17 AC 55 ms
6,820 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 23 ms
6,816 KB
testcase_20 AC 29 ms
6,820 KB
testcase_21 AC 47 ms
6,816 KB
testcase_22 AC 7 ms
6,820 KB
testcase_23 AC 27 ms
6,820 KB
testcase_24 AC 61 ms
6,820 KB
testcase_25 AC 54 ms
6,816 KB
testcase_26 AC 60 ms
6,816 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 19 ms
6,816 KB
testcase_29 AC 26 ms
6,820 KB
testcase_30 AC 15 ms
6,816 KB
testcase_31 AC 23 ms
6,820 KB
testcase_32 AC 25 ms
6,824 KB
testcase_33 AC 24 ms
6,820 KB
testcase_34 AC 35 ms
6,820 KB
testcase_35 AC 32 ms
6,820 KB
testcase_36 AC 35 ms
6,816 KB
testcase_37 AC 43 ms
6,820 KB
testcase_38 AC 35 ms
6,820 KB
testcase_39 AC 36 ms
6,820 KB
testcase_40 AC 25 ms
6,820 KB
testcase_41 AC 49 ms
6,820 KB
testcase_42 AC 47 ms
6,820 KB
testcase_43 AC 20 ms
6,820 KB
testcase_44 AC 23 ms
6,824 KB
testcase_45 AC 19 ms
6,820 KB
testcase_46 AC 12 ms
6,816 KB
testcase_47 AC 19 ms
6,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int h, w;
	cin >> h >> w;
	vector<string> g(h);
	for (int i = 0; i < h; i++) {
		cin >> g[i];
	}
	int dx[] = {0, 0, 1, -1};
	int dy[] = {1, -1, 0, 0};
	auto is_in = [&](int x, int y) {
		return 0 <= x && x < h && 0 <= y && y < w;
	};
	vector<vector<bool>> vis(h, vector<bool>(w));
	vector<string> ans = g;
	for (int i = 0; i < h; i++) {
		for (int j = 0; j < w; j++) {
			if (vis[i][j]) {
				continue;
			}
			deque<pair<int, int>> dq{{i, j}};
			vector<pair<int, int>> v{{i, j}};
			vis[i][j] = true;
			while (!dq.empty()) {
				auto [x, y] = dq.front();
				dq.pop_front();
				for (int k = 0; k < 4; k++) {
					int nx = x + dx[k];
					int ny = y + dy[k];
					if (is_in(nx, ny) && !vis[nx][ny] && g[nx][ny] == g[x][y]) {
						vis[nx][ny] = true;
						dq.push_back({nx, ny});
						v.push_back({nx, ny});
					}
				}
			}
			if (v.size() >= 4) {
				for (auto [x, y] : v) {
					ans[x][y] = '.';
				}
			}
		}
	}
	for (int i = 0; i < h; i++) {
		cout << ans[i] << "\n";
	}
}
0