結果

問題 No.2946 Puyo
ユーザー ks2mks2m
提出日時 2024-10-25 22:35:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 1,644 bytes
コンパイル時間 5,794 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 66,292 KB
最終ジャッジ日時 2024-10-25 22:36:10
合計ジャッジ時間 25,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,188 KB
testcase_01 AC 139 ms
54,012 KB
testcase_02 AC 139 ms
54,000 KB
testcase_03 AC 525 ms
66,004 KB
testcase_04 AC 516 ms
65,860 KB
testcase_05 AC 503 ms
66,108 KB
testcase_06 AC 514 ms
66,292 KB
testcase_07 AC 523 ms
65,960 KB
testcase_08 AC 239 ms
54,600 KB
testcase_09 AC 338 ms
58,076 KB
testcase_10 AC 258 ms
56,864 KB
testcase_11 AC 406 ms
61,732 KB
testcase_12 AC 244 ms
54,948 KB
testcase_13 AC 142 ms
54,136 KB
testcase_14 AC 269 ms
57,256 KB
testcase_15 AC 218 ms
54,356 KB
testcase_16 AC 272 ms
57,352 KB
testcase_17 AC 412 ms
61,112 KB
testcase_18 AC 174 ms
54,316 KB
testcase_19 AC 359 ms
58,140 KB
testcase_20 AC 349 ms
58,316 KB
testcase_21 AC 438 ms
61,844 KB
testcase_22 AC 235 ms
54,556 KB
testcase_23 AC 373 ms
59,320 KB
testcase_24 AC 524 ms
63,880 KB
testcase_25 AC 472 ms
61,552 KB
testcase_26 AC 458 ms
63,084 KB
testcase_27 AC 187 ms
54,468 KB
testcase_28 AC 478 ms
59,704 KB
testcase_29 AC 551 ms
64,332 KB
testcase_30 AC 435 ms
59,248 KB
testcase_31 AC 507 ms
61,404 KB
testcase_32 AC 511 ms
63,760 KB
testcase_33 AC 468 ms
61,648 KB
testcase_34 AC 494 ms
63,780 KB
testcase_35 AC 473 ms
63,372 KB
testcase_36 AC 524 ms
63,336 KB
testcase_37 AC 478 ms
63,376 KB
testcase_38 AC 428 ms
59,668 KB
testcase_39 AC 420 ms
59,540 KB
testcase_40 AC 395 ms
59,064 KB
testcase_41 AC 475 ms
64,076 KB
testcase_42 AC 431 ms
63,372 KB
testcase_43 AC 480 ms
59,200 KB
testcase_44 AC 530 ms
61,392 KB
testcase_45 AC 468 ms
58,956 KB
testcase_46 AC 397 ms
59,172 KB
testcase_47 AC 449 ms
61,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static int w;

	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		w = sc.nextInt();
		char[][] g = new char[h][w];
		for (int i = 0; i < h; i++) {
			g[i] = sc.next().toCharArray();
		}
		sc.close();

		int hw = h * w;
		UnionFind uf = new UnionFind(hw);
		for (int i = 0; i < h; i++) {
			for (int j = 0; j < w; j++) {
				if (i > 0) {
					if (g[i - 1][j] == g[i][j]) {
						uf.union(toInt(i - 1, j), toInt(i, j));
					}
				}
				if (j > 0) {
					if (g[i][j - 1] == g[i][j]) {
						uf.union(toInt(i, j - 1), toInt(i, j));
					}
				}
			}
		}

		for (int i = 0; i < h; i++) {
			for (int j = 0; j < w; j++) {
				if (uf.size(toInt(i, j)) >= 4) {
					g[i][j] = '.';
				}
			}
			System.out.println(g[i]);
		}
	}

	static int toInt(int x, int y) {
		return x * w + y;
	}

	static class UnionFind {
		int[] parent, size;
		int num = 0; // 連結成分の数

		UnionFind(int n) {
			parent = new int[n];
			size = new int[n];
			num = n;
			for (int i = 0; i < n; i++) {
				parent[i] = i;
				size[i] = 1;
			}
		}

		void union(int x, int y) {
			int px = find(x);
			int py = find(y);
			if (px != py) {
				parent[px] = py;
				size[py] += size[px];
				num--;
			}
		}

		int find(int x) {
			if (parent[x] == x) {
				return x;
			}
			parent[x] = find(parent[x]);
			return parent[x];
		}

		/**
		 * xとyが同一連結成分か
		 */
		boolean same(int x, int y) {
			return find(x) == find(y);
		}

		/**
		 * xを含む連結成分のサイズ
		 */
		int size(int x) {
			return size[find(x)];
		}
	}
}
0