結果

問題 No.179 塗り分け
ユーザー uafr_csuafr_cs
提出日時 2015-08-06 19:08:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,432 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 78,000 KB
実行使用メモリ 54,128 KB
最終ジャッジ日時 2024-10-02 14:43:57
合計ジャッジ時間 14,460 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,228 KB
testcase_01 AC 110 ms
40,208 KB
testcase_02 AC 107 ms
41,264 KB
testcase_03 AC 115 ms
41,148 KB
testcase_04 AC 102 ms
41,288 KB
testcase_05 AC 220 ms
41,832 KB
testcase_06 AC 164 ms
41,940 KB
testcase_07 WA -
testcase_08 AC 109 ms
41,424 KB
testcase_09 AC 142 ms
41,624 KB
testcase_10 AC 243 ms
43,108 KB
testcase_11 AC 209 ms
42,884 KB
testcase_12 AC 385 ms
43,364 KB
testcase_13 AC 117 ms
41,544 KB
testcase_14 AC 126 ms
41,404 KB
testcase_15 AC 110 ms
40,224 KB
testcase_16 AC 113 ms
40,256 KB
testcase_17 AC 113 ms
41,456 KB
testcase_18 AC 276 ms
42,572 KB
testcase_19 AC 279 ms
42,204 KB
testcase_20 AC 385 ms
42,304 KB
testcase_21 AC 479 ms
42,468 KB
testcase_22 AC 376 ms
42,692 KB
testcase_23 AC 302 ms
42,588 KB
testcase_24 AC 412 ms
42,028 KB
testcase_25 AC 302 ms
42,584 KB
testcase_26 AC 262 ms
42,508 KB
testcase_27 AC 432 ms
42,976 KB
testcase_28 AC 349 ms
42,388 KB
testcase_29 AC 486 ms
42,788 KB
testcase_30 AC 267 ms
42,720 KB
testcase_31 AC 551 ms
42,504 KB
testcase_32 AC 260 ms
42,716 KB
testcase_33 AC 517 ms
42,848 KB
testcase_34 AC 302 ms
42,676 KB
testcase_35 AC 517 ms
42,804 KB
testcase_36 AC 106 ms
39,948 KB
testcase_37 AC 113 ms
40,896 KB
testcase_38 AC 116 ms
41,360 KB
testcase_39 AC 106 ms
40,136 KB
testcase_40 AC 116 ms
40,980 KB
testcase_41 AC 107 ms
40,304 KB
testcase_42 AC 112 ms
41,228 KB
testcase_43 AC 162 ms
41,696 KB
testcase_44 AC 297 ms
41,992 KB
testcase_45 AC 138 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int H = sc.nextInt();
		final int W = sc.nextInt();
		
		boolean[][] fields = new boolean[H][W];
		for(int i = 0; i < H; i++){
			char[] inputs = sc.next().toCharArray();
			for(int j = 0; j < W; j++){
				fields[i][j] = inputs[j] == '#';
			}
		}
		
		boolean[][] checked = new boolean[H][W];
		
		for(int dy = -(H - 1); dy < H; dy++){
			for(int dx = -(W - 1); dx < W; dx++){
				if(dx == 0 && dy == 0){ continue; }
				
				for(int i = 0; i < H; i++){
					for(int j = 0; j < W; j++){
						checked[i][j] = false;
					}
				}
				
				
				for(int y = 0; y < H; y++){
					for(int x = 0; x < W; x++){
						final int nx = x + dx;
						final int ny = y + dy;
						if(nx < 0 || nx >= W || ny < 0 || ny >= H){ continue; }
						
						if(checked[y][x] || checked[ny][nx]){ continue; }
						if(fields[y][x] && fields[ny][nx]){
							checked[y][x] = checked[ny][nx] = true;
						}
					}
				}
				
				boolean flg = true;
				for(int i = 0; i < H; i++){
					for(int j = 0; j < W; j++){
						if(fields[i][j] && !checked[i][j]){
							flg = false;
						}
					}
				}
				
				if(flg){
					System.out.println("YES");
					return;
				}
			}
		}
		
		System.out.println("NO");
	}
	
}
0