結果

問題 No.179 塗り分け
ユーザー ぴろずぴろず
提出日時 2015-03-26 19:22:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 3,000 ms
コード長 1,159 bytes
コンパイル時間 3,096 ms
コンパイル使用メモリ 77,368 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-07-23 14:24:25
合計ジャッジ時間 9,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,908 KB
testcase_01 AC 129 ms
54,176 KB
testcase_02 AC 129 ms
53,776 KB
testcase_03 AC 128 ms
41,472 KB
testcase_04 AC 114 ms
39,968 KB
testcase_05 AC 137 ms
41,284 KB
testcase_06 AC 129 ms
41,436 KB
testcase_07 AC 176 ms
41,472 KB
testcase_08 AC 149 ms
41,808 KB
testcase_09 AC 152 ms
41,212 KB
testcase_10 AC 127 ms
41,148 KB
testcase_11 AC 128 ms
41,140 KB
testcase_12 AC 162 ms
41,480 KB
testcase_13 AC 110 ms
40,256 KB
testcase_14 AC 131 ms
41,328 KB
testcase_15 AC 125 ms
41,660 KB
testcase_16 AC 115 ms
40,140 KB
testcase_17 AC 126 ms
41,796 KB
testcase_18 AC 132 ms
41,420 KB
testcase_19 AC 131 ms
41,412 KB
testcase_20 AC 157 ms
41,600 KB
testcase_21 AC 176 ms
41,260 KB
testcase_22 AC 203 ms
41,772 KB
testcase_23 AC 116 ms
39,884 KB
testcase_24 AC 159 ms
41,428 KB
testcase_25 AC 125 ms
40,584 KB
testcase_26 AC 132 ms
41,432 KB
testcase_27 AC 166 ms
41,436 KB
testcase_28 AC 135 ms
41,440 KB
testcase_29 AC 157 ms
41,516 KB
testcase_30 AC 147 ms
41,180 KB
testcase_31 AC 162 ms
41,944 KB
testcase_32 AC 142 ms
41,108 KB
testcase_33 AC 164 ms
41,664 KB
testcase_34 AC 133 ms
41,000 KB
testcase_35 AC 170 ms
41,660 KB
testcase_36 AC 125 ms
41,344 KB
testcase_37 AC 123 ms
41,300 KB
testcase_38 AC 125 ms
41,136 KB
testcase_39 AC 124 ms
41,144 KB
testcase_40 AC 128 ms
41,272 KB
testcase_41 AC 113 ms
39,860 KB
testcase_42 AC 126 ms
41,412 KB
testcase_43 AC 133 ms
41,424 KB
testcase_44 AC 134 ms
41,224 KB
testcase_45 AC 123 ms
40,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package division;

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		char[][] map = new char[h][];
		for(int i=0;i<h;i++) {
			map[i] = sc.next().toCharArray();
		}
		System.out.println(solve(h,w,map) ? "YES" : "NO");
	}

	public static boolean solve(int h,int w,char[][] map) {
		boolean[][] painted = new boolean[h][w];
		for(int di=0;di<h;di++) {
			LOOP: for(int dj=-w+1;dj<w;dj++) {
				if (di == 0 && dj <= 0) {
					continue;
				}
				for(int i=0;i<h;i++) {
					Arrays.fill(painted[i], false);
				}
				int count = 0;
				for(int i=0;i<h;i++) {
					for(int j=0;j<w;j++) {
						if (map[i][j] == '#' && !painted[i][j]) {
							int ni = i + di;
							int nj = j + dj;
							if (ni < 0 || ni >= h || nj < 0 || nj >= w) {
								continue LOOP;
							}
							if (map[ni][nj] != '#' || painted[i][j]) {
								continue LOOP;
							}
							painted[i][j] = painted[ni][nj] = true;
							count++;
						}
					}
				}
				if (count >= 1) {
					return true;
				}
			}
		}
		return false;
	}
}
0