結果

問題 No.179 塗り分け
ユーザー GrenacheGrenache
提出日時 2015-07-02 11:43:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,238 bytes
コンパイル時間 4,900 ms
コンパイル使用メモリ 77,620 KB
実行使用メモリ 54,768 KB
最終ジャッジ日時 2024-10-02 14:36:14
合計ジャッジ時間 14,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,356 KB
testcase_01 AC 132 ms
41,028 KB
testcase_02 AC 134 ms
41,644 KB
testcase_03 AC 133 ms
41,404 KB
testcase_04 AC 132 ms
41,216 KB
testcase_05 AC 134 ms
41,024 KB
testcase_06 WA -
testcase_07 AC 137 ms
41,388 KB
testcase_08 AC 137 ms
41,440 KB
testcase_09 AC 162 ms
41,532 KB
testcase_10 AC 180 ms
41,236 KB
testcase_11 AC 161 ms
41,408 KB
testcase_12 AC 218 ms
41,772 KB
testcase_13 AC 133 ms
41,164 KB
testcase_14 AC 137 ms
41,236 KB
testcase_15 AC 132 ms
41,208 KB
testcase_16 AC 133 ms
40,992 KB
testcase_17 AC 119 ms
40,172 KB
testcase_18 WA -
testcase_19 AC 187 ms
41,572 KB
testcase_20 AC 140 ms
41,412 KB
testcase_21 AC 141 ms
41,660 KB
testcase_22 AC 293 ms
41,980 KB
testcase_23 AC 244 ms
41,552 KB
testcase_24 AC 236 ms
41,520 KB
testcase_25 AC 171 ms
41,752 KB
testcase_26 AC 198 ms
41,676 KB
testcase_27 AC 269 ms
41,352 KB
testcase_28 AC 203 ms
41,364 KB
testcase_29 AC 281 ms
41,536 KB
testcase_30 AC 186 ms
41,292 KB
testcase_31 AC 356 ms
42,156 KB
testcase_32 AC 302 ms
42,220 KB
testcase_33 AC 359 ms
42,148 KB
testcase_34 WA -
testcase_35 AC 335 ms
42,216 KB
testcase_36 AC 131 ms
41,212 KB
testcase_37 AC 134 ms
41,128 KB
testcase_38 AC 132 ms
41,160 KB
testcase_39 AC 119 ms
41,020 KB
testcase_40 AC 130 ms
41,440 KB
testcase_41 AC 132 ms
41,128 KB
testcase_42 AC 130 ms
41,480 KB
testcase_43 AC 168 ms
41,404 KB
testcase_44 AC 201 ms
41,896 KB
testcase_45 AC 138 ms
41,140 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;
//            		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] != s[i + dy][j + dx]) {
//            						break next;
//            					}
            					if (s[i][j] == '#' && s[i + dy][j + dx] == '#') {
            						same++;
            					}
            				}
            			}
            		}
            		
            		if (same == (black / 2)) {
            			boolean[][] used = new boolean[h][w];
                		flag = true;
                		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;
                						} else {
                							flag = false;
                						}
                					}
                				}
                			}
                		}

                		if (flag) {
//                			System.out.println(dx + " " + dy);
                			break fin;
                		}
            		}
            	}
        	}
        }

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

        sc.close();
    }
}
0