結果

問題 No.179 塗り分け
ユーザー kenkooookenkoooo
提出日時 2015-04-18 00:56:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 303 ms / 3,000 ms
コード長 1,372 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 77,864 KB
実行使用メモリ 57,064 KB
最終ジャッジ日時 2024-07-23 14:29:08
合計ジャッジ時間 12,290 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
52,040 KB
testcase_01 AC 128 ms
52,208 KB
testcase_02 AC 131 ms
54,208 KB
testcase_03 AC 130 ms
52,344 KB
testcase_04 AC 132 ms
52,176 KB
testcase_05 AC 121 ms
53,044 KB
testcase_06 AC 162 ms
52,224 KB
testcase_07 AC 137 ms
52,392 KB
testcase_08 AC 226 ms
56,932 KB
testcase_09 AC 262 ms
56,748 KB
testcase_10 AC 191 ms
54,900 KB
testcase_11 AC 209 ms
56,788 KB
testcase_12 AC 291 ms
56,980 KB
testcase_13 AC 132 ms
52,612 KB
testcase_14 AC 135 ms
54,616 KB
testcase_15 AC 127 ms
51,876 KB
testcase_16 AC 128 ms
52,200 KB
testcase_17 AC 134 ms
54,000 KB
testcase_18 AC 227 ms
56,856 KB
testcase_19 AC 211 ms
56,492 KB
testcase_20 AC 134 ms
54,116 KB
testcase_21 AC 135 ms
53,960 KB
testcase_22 AC 270 ms
56,744 KB
testcase_23 AC 239 ms
57,064 KB
testcase_24 AC 243 ms
57,044 KB
testcase_25 AC 202 ms
56,888 KB
testcase_26 AC 217 ms
56,508 KB
testcase_27 AC 248 ms
56,256 KB
testcase_28 AC 239 ms
57,020 KB
testcase_29 AC 270 ms
56,932 KB
testcase_30 AC 246 ms
56,712 KB
testcase_31 AC 247 ms
56,840 KB
testcase_32 AC 247 ms
56,864 KB
testcase_33 AC 303 ms
56,744 KB
testcase_34 AC 219 ms
56,976 KB
testcase_35 AC 276 ms
56,932 KB
testcase_36 AC 132 ms
53,892 KB
testcase_37 AC 130 ms
54,200 KB
testcase_38 AC 131 ms
54,168 KB
testcase_39 AC 128 ms
53,976 KB
testcase_40 AC 131 ms
54,436 KB
testcase_41 AC 134 ms
54,088 KB
testcase_42 AC 136 ms
53,996 KB
testcase_43 AC 155 ms
56,464 KB
testcase_44 AC 196 ms
56,840 KB
testcase_45 AC 142 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int H = sc.nextInt();
		int W = sc.nextInt();
		char[][] map = new char[H][];
		for (int i = 0; i < map.length; i++) {
			map[i] = sc.next().toCharArray();
		}

		int cnt = 0;
		for (int i = 0; i < map.length; i++) {
			for (int j = 0; j < map[i].length; j++) {
				if (map[i][j] == '#') {
					cnt++;
				}
			}
		}
		if (cnt % 2 == 1 || cnt == 0) {
			System.out.println("NO");
			return;
		}

		for (int x = 1 - H; x < H; x++) {
			for (int y = 1 - W; y < W; y++) {
				if (x == 0 && y == 0) {
					continue;
				}
				if (check(x, y, map)) {
					System.out.println("YES");
					return;
				}
			}
		}
		System.out.println("NO");

	}

	static boolean check(int x, int y, char[][] origin) {
		char[][] map = new char[origin.length][origin[0].length];
		for (int i = 0; i < map.length; i++) {
			for (int j = 0; j < map[i].length; j++) {
				map[i][j] = origin[i][j];
			}
		}

		for (int i = 0; i < map.length; i++) {
			for (int j = 0; j < map[i].length; j++) {
				int h = i + x;
				int w = j + y;
				if (map[i][j] == '#') {
					if (h >= map.length || w >= map[i].length || h < 0 || w < 0 || map[h][w] != '#') {
						return false;
					}
					map[i][j] = '.';
					map[h][w] = '.';
				}
			}
		}
		return true;
	}
}
0