結果

問題 No.179 塗り分け
ユーザー 37zigen37zigen
提出日時 2020-02-19 14:35:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 279 ms / 3,000 ms
コード長 1,471 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 57,104 KB
最終ジャッジ日時 2024-07-23 15:11:22
合計ジャッジ時間 11,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,044 KB
testcase_01 AC 134 ms
54,112 KB
testcase_02 AC 141 ms
54,084 KB
testcase_03 AC 135 ms
54,040 KB
testcase_04 AC 141 ms
54,396 KB
testcase_05 AC 176 ms
56,816 KB
testcase_06 AC 145 ms
54,264 KB
testcase_07 AC 139 ms
54,016 KB
testcase_08 AC 183 ms
57,020 KB
testcase_09 AC 221 ms
57,084 KB
testcase_10 AC 147 ms
54,312 KB
testcase_11 AC 146 ms
54,216 KB
testcase_12 AC 246 ms
56,680 KB
testcase_13 AC 137 ms
53,972 KB
testcase_14 AC 138 ms
53,864 KB
testcase_15 AC 134 ms
53,888 KB
testcase_16 AC 141 ms
54,144 KB
testcase_17 AC 137 ms
53,968 KB
testcase_18 AC 160 ms
54,296 KB
testcase_19 AC 161 ms
54,096 KB
testcase_20 AC 226 ms
56,664 KB
testcase_21 AC 216 ms
56,776 KB
testcase_22 AC 215 ms
56,496 KB
testcase_23 AC 147 ms
54,072 KB
testcase_24 AC 209 ms
56,820 KB
testcase_25 AC 148 ms
54,648 KB
testcase_26 AC 213 ms
57,104 KB
testcase_27 AC 244 ms
56,976 KB
testcase_28 AC 222 ms
56,908 KB
testcase_29 AC 264 ms
56,684 KB
testcase_30 AC 246 ms
56,896 KB
testcase_31 AC 279 ms
56,660 KB
testcase_32 AC 181 ms
56,756 KB
testcase_33 AC 257 ms
56,916 KB
testcase_34 AC 239 ms
57,024 KB
testcase_35 AC 273 ms
56,472 KB
testcase_36 AC 132 ms
53,984 KB
testcase_37 AC 134 ms
54,236 KB
testcase_38 AC 134 ms
54,124 KB
testcase_39 AC 133 ms
54,088 KB
testcase_40 AC 132 ms
53,828 KB
testcase_41 AC 132 ms
54,272 KB
testcase_42 AC 133 ms
54,084 KB
testcase_43 AC 143 ms
53,396 KB
testcase_44 AC 174 ms
56,756 KB
testcase_45 AC 132 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void solve(int H,int W,char[][] m) {
		for(int dh=0;dh<H;++dh) {
			for(int dw=0;dw<W;++dw) {
				if(dh==0&&dw==0)continue;
				boolean flag=true;
				int[][] rec=new int[H][W];
				for(int h=0;h<H;++h) {
					for(int w=0;w<W;++w) {
						if(m[h][w]=='.')continue;
						if(rec[h][w]!=0)continue;
						int nh=h+dh;
						int nw=w+dw;
						if(nh>=H||nw>=W) {
							flag=false;
							continue;
						}
						if(rec[nh][nw]==2) {
							flag=false;
							continue;
						}
						flag&=m[nh][nw]=='#';
						rec[h][w]=1;
						rec[nh][nw]=2;
					}
				}
				if(flag) {
					System.out.println("YES");
					System.exit(0);
				}
			}
		}
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int H=sc.nextInt();
		int W=sc.nextInt();
		char[][] m=new char[H][W];
		boolean all=true;
		for(int i=0;i<H;++i) {
			m[i]=sc.next().toCharArray();
			for(int j=0;j<m[i].length;++j)all&=m[i][j]=='.';
		}
		if(all) {
			System.out.println("NO");
			return;
		}
		solve(H,W,m);
		{
			for(int h=0;h<H;++h) {
				int s=0;
				int t=W-1;
				while(s<t) {
					m[h][s]^=m[h][t];
					m[h][t]^=m[h][s];
					m[h][s]^=m[h][t];
					++s;--t;
				}
			}
		}
		solve(H,W,m);
		System.out.println("NO");
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0