結果

問題 No.179 塗り分け
ユーザー はまやんはまやんはまやんはまやん
提出日時 2015-06-19 16:21:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 292 ms / 3,000 ms
コード長 1,794 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 78,384 KB
実行使用メモリ 47,732 KB
最終ジャッジ日時 2024-07-23 14:30:38
合計ジャッジ時間 11,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,168 KB
testcase_01 AC 111 ms
39,752 KB
testcase_02 AC 124 ms
41,016 KB
testcase_03 AC 123 ms
41,128 KB
testcase_04 AC 127 ms
41,396 KB
testcase_05 AC 179 ms
44,976 KB
testcase_06 AC 114 ms
40,372 KB
testcase_07 AC 227 ms
46,716 KB
testcase_08 AC 217 ms
46,684 KB
testcase_09 AC 236 ms
46,924 KB
testcase_10 AC 134 ms
41,408 KB
testcase_11 AC 132 ms
41,380 KB
testcase_12 AC 292 ms
47,732 KB
testcase_13 AC 127 ms
41,036 KB
testcase_14 AC 119 ms
41,396 KB
testcase_15 AC 125 ms
41,164 KB
testcase_16 AC 127 ms
41,420 KB
testcase_17 AC 127 ms
41,284 KB
testcase_18 AC 158 ms
42,932 KB
testcase_19 AC 160 ms
42,320 KB
testcase_20 AC 232 ms
47,392 KB
testcase_21 AC 222 ms
46,472 KB
testcase_22 AC 228 ms
47,424 KB
testcase_23 AC 132 ms
41,392 KB
testcase_24 AC 222 ms
46,412 KB
testcase_25 AC 156 ms
41,600 KB
testcase_26 AC 175 ms
46,440 KB
testcase_27 AC 249 ms
47,620 KB
testcase_28 AC 174 ms
43,600 KB
testcase_29 AC 273 ms
47,300 KB
testcase_30 AC 214 ms
47,140 KB
testcase_31 AC 261 ms
47,484 KB
testcase_32 AC 215 ms
46,932 KB
testcase_33 AC 271 ms
47,728 KB
testcase_34 AC 206 ms
46,748 KB
testcase_35 AC 269 ms
47,412 KB
testcase_36 AC 128 ms
41,036 KB
testcase_37 AC 128 ms
41,264 KB
testcase_38 AC 125 ms
41,424 KB
testcase_39 AC 123 ms
41,144 KB
testcase_40 AC 123 ms
41,144 KB
testcase_41 AC 121 ms
41,004 KB
testcase_42 AC 124 ms
41,324 KB
testcase_43 AC 153 ms
42,752 KB
testcase_44 AC 181 ms
45,780 KB
testcase_45 AC 117 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Point;
import java.io.FileInputStream;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	
	static int h, w;
	static int[][] map;
	static int count;
	
	static void start()
	{
		for(int dy = 0;dy < h;dy++)
			for(int dx = 0;dx < w;dx++)
			{
				if(dx == 0 && dy == 0) continue;
				
				int[][] mapp = new int[h][w];
				int cc = 0;
				for(int y = 0;y < h;y++)
					for(int x= 0;x < w;x++)
						mapp[y][x] = 0;
				
				for(int y = 0;y < (h-dy);y++)
					for(int x = 0;x < (w-dx);x++)
					{
						if(mapp[y][x] == 1) continue;
						if(map[y][x] == 0) continue;
						if(map[y+dy][x+dx] == 0) continue;
						
						mapp[y][x] = 1;
						mapp[y+dy][x+dx] = 1;
						cc += 2;
						if(cc == count)
						{
							System.out.println("YES");
							return;
						}
					}
				
				cc = 0;
				for(int y = 0;y < h;y++)
					for(int x= 0;x < w;x++)
						mapp[y][x] = 0;
				
				for(int y = h-1;y >= dy;y--)
					for(int x = 0;x < (w-dx);x++)
					{
						if(mapp[y][x] == 1) continue;
						if(map[y][x] == 0) continue;
						if(map[y-dy][x+dx] == 0) continue;
						
						mapp[y][x] = 1;
						mapp[y-dy][x+dx] = 1;
						cc += 2;
						if(cc == count)
						{
							System.out.println("YES");
							return;
						}
					}
			}
		
		System.out.println("NO");
	}
	
	public static void main(String[] args)
	{
		Scanner sca = new Scanner(System.in);
		
		while(true)
		{
			h = sca.nextInt();
			w = sca.nextInt();
			
			map = new int[h][w];
			count = 0;
			for(int y = 0;y < h;y++)
			{
				String str = sca.next();
				for(int x = 0;x < w;x++)
				{
					if(str.charAt(x) == '#')
					{
						map[y][x] = 1;
						count++;
					}
					else
					{
						map[y][x] = 0;
					}
				}
			}
			
			start();
			break;
		}
	}
}
0