結果

問題 No.179 塗り分け
ユーザー GrenacheGrenache
提出日時 2015-07-02 12:31:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 3,000 ms
コード長 1,740 bytes
コンパイル時間 3,269 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 45,928 KB
最終ジャッジ日時 2024-07-23 14:31:50
合計ジャッジ時間 11,828 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,380 KB
testcase_01 AC 113 ms
39,752 KB
testcase_02 AC 126 ms
41,388 KB
testcase_03 AC 123 ms
40,888 KB
testcase_04 AC 121 ms
41,400 KB
testcase_05 AC 123 ms
40,912 KB
testcase_06 AC 145 ms
42,496 KB
testcase_07 AC 140 ms
41,268 KB
testcase_08 AC 135 ms
41,508 KB
testcase_09 AC 144 ms
41,796 KB
testcase_10 AC 188 ms
45,376 KB
testcase_11 AC 175 ms
45,668 KB
testcase_12 AC 271 ms
45,408 KB
testcase_13 AC 122 ms
41,272 KB
testcase_14 AC 130 ms
41,340 KB
testcase_15 AC 122 ms
41,032 KB
testcase_16 AC 124 ms
41,092 KB
testcase_17 AC 120 ms
41,268 KB
testcase_18 AC 208 ms
45,168 KB
testcase_19 AC 184 ms
45,156 KB
testcase_20 AC 131 ms
41,192 KB
testcase_21 AC 134 ms
41,168 KB
testcase_22 AC 263 ms
45,572 KB
testcase_23 AC 170 ms
44,936 KB
testcase_24 AC 219 ms
44,876 KB
testcase_25 AC 177 ms
45,560 KB
testcase_26 AC 178 ms
45,676 KB
testcase_27 AC 216 ms
45,472 KB
testcase_28 AC 157 ms
45,552 KB
testcase_29 AC 238 ms
45,696 KB
testcase_30 AC 165 ms
45,372 KB
testcase_31 AC 192 ms
45,628 KB
testcase_32 AC 189 ms
45,536 KB
testcase_33 AC 221 ms
45,608 KB
testcase_34 AC 166 ms
45,552 KB
testcase_35 AC 199 ms
45,928 KB
testcase_36 AC 117 ms
40,620 KB
testcase_37 AC 126 ms
41,216 KB
testcase_38 AC 122 ms
41,276 KB
testcase_39 AC 124 ms
41,024 KB
testcase_40 AC 129 ms
41,576 KB
testcase_41 AC 123 ms
41,280 KB
testcase_42 AC 114 ms
40,376 KB
testcase_43 AC 155 ms
42,708 KB
testcase_44 AC 170 ms
44,964 KB
testcase_45 AC 126 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder179 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int h = sc.nextInt();
        int w = sc.nextInt();

        char[][] s = new char[h][];
        int black = 0;
        for (int i = 0; i < h; i++) {
        	s[i] = sc.next().toCharArray();
        	for (int j = 0; j < s[i].length; j++) {
        		if (s[i][j] == '#') {
        			black++;
        		}
        	}
        }

        boolean flag = false;
        if (black != 0 && black % 2 == 0) {
        	fin:
        	for (int dx = - w + 1; dx <= w - 1; dx++) {
            	for (int dy = - h + 1; dy <= h - 1; dy++) {
            		int same = 0;
        			boolean[][] used = new boolean[h][w];
            		next:
            		for (int i = 0; i < h; i++) {
            			for (int j = 0; j < w; j++) {
            				if (i + dy >= 0 && i + dy < h && j + dx >= 0 && j + dx < w) {
            					if (s[i][j] == '#' && !used[i][j]) {
            						if (s[i + dy][j + dx] == '#' && !used[i + dy][j + dx]) {
            							used[i][j] = true;
            							used[i + dy][j + dx] = true;
                						same++;
            						} else {
            							same = 0;
            							break next;
            						}
            					}
            				}
            			}
            		}

            		if (same == (black / 2)) {
                		flag = true;
//            			System.out.println(dx + " " + dy);
                		break fin;
            		}
            		
            	}
        	}
        }

        if (flag) {
        	System.out.println("YES");
        } else {
        	System.out.println("NO");
        }

        sc.close();
    }
}
0