結果

問題 No.179 塗り分け
ユーザー 37zigen37zigen
提出日時 2020-02-19 14:33:31
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,472 bytes
コンパイル時間 2,516 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 58,932 KB
最終ジャッジ日時 2024-10-08 01:02:39
合計ジャッジ時間 11,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 110 ms
52,972 KB
testcase_02 RE -
testcase_03 AC 131 ms
54,408 KB
testcase_04 RE -
testcase_05 AC 168 ms
56,492 KB
testcase_06 RE -
testcase_07 AC 127 ms
54,192 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 226 ms
56,740 KB
testcase_13 AC 121 ms
54,040 KB
testcase_14 AC 114 ms
53,100 KB
testcase_15 AC 110 ms
52,616 KB
testcase_16 RE -
testcase_17 AC 110 ms
52,768 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 191 ms
56,244 KB
testcase_21 AC 206 ms
56,692 KB
testcase_22 AC 184 ms
56,040 KB
testcase_23 RE -
testcase_24 AC 193 ms
56,888 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 223 ms
58,932 KB
testcase_28 RE -
testcase_29 AC 234 ms
56,836 KB
testcase_30 RE -
testcase_31 AC 250 ms
56,640 KB
testcase_32 RE -
testcase_33 AC 241 ms
56,572 KB
testcase_34 RE -
testcase_35 AC 256 ms
56,764 KB
testcase_36 AC 122 ms
54,144 KB
testcase_37 AC 130 ms
54,020 KB
testcase_38 AC 120 ms
54,004 KB
testcase_39 AC 120 ms
54,024 KB
testcase_40 AC 109 ms
54,140 KB
testcase_41 AC 123 ms
54,108 KB
testcase_42 AC 114 ms
53,696 KB
testcase_43 AC 123 ms
53,344 KB
testcase_44 AC 161 ms
56,812 KB
testcase_45 AC 122 ms
54,052 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(-1);
				}
			}
		}
	}
	
	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