結果

問題 No.2946 Puyo
ユーザー achapiachapi
提出日時 2024-10-26 00:58:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 216,432 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-26 00:58:57
合計ジャッジ時間 6,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 114 ms
6,816 KB
testcase_04 AC 114 ms
6,816 KB
testcase_05 AC 114 ms
6,820 KB
testcase_06 AC 114 ms
6,816 KB
testcase_07 AC 116 ms
6,820 KB
testcase_08 AC 10 ms
6,816 KB
testcase_09 AC 39 ms
6,820 KB
testcase_10 AC 10 ms
6,816 KB
testcase_11 AC 59 ms
6,816 KB
testcase_12 AC 10 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 14 ms
6,816 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 20 ms
6,816 KB
testcase_17 AC 65 ms
6,816 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 27 ms
6,820 KB
testcase_20 AC 35 ms
6,816 KB
testcase_21 AC 57 ms
6,816 KB
testcase_22 AC 9 ms
6,816 KB
testcase_23 AC 32 ms
6,816 KB
testcase_24 AC 71 ms
6,820 KB
testcase_25 AC 63 ms
6,816 KB
testcase_26 AC 69 ms
6,820 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 28 ms
6,816 KB
testcase_29 AC 39 ms
6,820 KB
testcase_30 AC 23 ms
6,816 KB
testcase_31 AC 34 ms
6,820 KB
testcase_32 AC 35 ms
6,820 KB
testcase_33 AC 33 ms
6,816 KB
testcase_34 AC 48 ms
6,816 KB
testcase_35 AC 43 ms
6,816 KB
testcase_36 AC 47 ms
6,816 KB
testcase_37 AC 55 ms
6,820 KB
testcase_38 AC 43 ms
6,816 KB
testcase_39 AC 42 ms
6,820 KB
testcase_40 AC 31 ms
6,816 KB
testcase_41 AC 61 ms
6,816 KB
testcase_42 AC 57 ms
6,816 KB
testcase_43 AC 29 ms
6,816 KB
testcase_44 AC 34 ms
6,816 KB
testcase_45 AC 27 ms
6,816 KB
testcase_46 AC 18 ms
6,820 KB
testcase_47 AC 27 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
int main(){
	int H, W;
	cin >> H >> W;
	vector<string> G(H);
	for (int i = 0; i < H; i++){
		cin >> G[i];
	}
	vector<vector<bool>> vis(H, vector<bool>(W));
	for (int i = 0; i < H; i++){
		for (int j = 0; j < W; j++){
			if (vis[i][j]){
				continue;
			}
			queue<pair<int, int>> q;
			q.push(make_pair(i, j));
			vector<pair<int, int>> A;
			A.push_back(make_pair(i, j));
			vis[i][j] = true;
			while (!q.empty()){
				auto [x, y] = q.front();
				q.pop();
				for (int k = 0; k < 4; k++){
					int px = x + dx[k], py = y + dy[k];
					if (0 <= px and px < H and 0 <= py and py < W and !vis[px][py]){
						if (G[px][py] == G[i][j]){
							q.push(make_pair(px, py));
							A.push_back(make_pair(px, py));
							vis[px][py] = true;
						}
					}
				}
			}
			if (A.size() >= 4){
				for (auto [x, y] : A){
					G[x][y] = '.';
				}
			}
		}
	}
	for (int i = 0; i < H; i++){
		cout << G[i] << endl;
	}
}
0