結果

問題 No.179 塗り分け
ユーザー uafr_csuafr_cs
提出日時 2015-08-06 19:12:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 568 ms / 3,000 ms
コード長 1,522 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 55,976 KB
最終ジャッジ日時 2024-07-23 14:32:25
合計ジャッジ時間 16,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,020 KB
testcase_01 AC 129 ms
53,904 KB
testcase_02 AC 130 ms
52,572 KB
testcase_03 AC 128 ms
54,076 KB
testcase_04 AC 129 ms
54,172 KB
testcase_05 AC 256 ms
54,756 KB
testcase_06 AC 183 ms
54,544 KB
testcase_07 AC 340 ms
55,348 KB
testcase_08 AC 136 ms
54,048 KB
testcase_09 AC 164 ms
54,924 KB
testcase_10 AC 240 ms
55,580 KB
testcase_11 AC 290 ms
55,804 KB
testcase_12 AC 487 ms
55,976 KB
testcase_13 AC 134 ms
53,840 KB
testcase_14 AC 132 ms
54,132 KB
testcase_15 AC 127 ms
54,156 KB
testcase_16 AC 110 ms
52,772 KB
testcase_17 AC 113 ms
52,852 KB
testcase_18 AC 299 ms
55,600 KB
testcase_19 AC 260 ms
54,856 KB
testcase_20 AC 387 ms
54,972 KB
testcase_21 AC 563 ms
55,328 KB
testcase_22 AC 462 ms
55,312 KB
testcase_23 AC 385 ms
55,380 KB
testcase_24 AC 480 ms
55,208 KB
testcase_25 AC 367 ms
55,188 KB
testcase_26 AC 312 ms
55,068 KB
testcase_27 AC 568 ms
55,592 KB
testcase_28 AC 340 ms
55,280 KB
testcase_29 AC 484 ms
55,640 KB
testcase_30 AC 284 ms
55,492 KB
testcase_31 AC 512 ms
54,888 KB
testcase_32 AC 287 ms
55,524 KB
testcase_33 AC 471 ms
55,548 KB
testcase_34 AC 348 ms
55,376 KB
testcase_35 AC 490 ms
55,584 KB
testcase_36 AC 128 ms
54,176 KB
testcase_37 AC 128 ms
54,008 KB
testcase_38 AC 127 ms
53,888 KB
testcase_39 AC 128 ms
53,772 KB
testcase_40 AC 129 ms
54,188 KB
testcase_41 AC 128 ms
54,048 KB
testcase_42 AC 127 ms
53,968 KB
testcase_43 AC 176 ms
54,584 KB
testcase_44 AC 346 ms
54,756 KB
testcase_45 AC 150 ms
54,460 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 found = false;
				boolean flg = true;
				for(int i = 0; i < H; i++){
					for(int j = 0; j < W; j++){
						if(fields[i][j]){ found = true; }
						
						if(fields[i][j] && !checked[i][j]){
							flg = false;
						}
					}
				}
				
				if(flg && found){
					System.out.println("YES");
					return;
				}
			}
		}
		
		System.out.println("NO");
	}
	
}
0