結果

問題 No.179 塗り分け
ユーザー kuuso1kuuso1
提出日時 2015-04-05 23:57:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 3,000 ms
コード長 1,600 bytes
コンパイル時間 3,329 ms
コンパイル使用メモリ 112,072 KB
実行使用メモリ 32,184 KB
最終ジャッジ日時 2024-07-23 14:25:12
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,060 KB
testcase_01 AC 25 ms
24,184 KB
testcase_02 AC 25 ms
23,544 KB
testcase_03 AC 25 ms
26,360 KB
testcase_04 AC 25 ms
26,148 KB
testcase_05 AC 24 ms
22,068 KB
testcase_06 AC 24 ms
21,812 KB
testcase_07 AC 25 ms
24,104 KB
testcase_08 AC 25 ms
24,108 KB
testcase_09 AC 25 ms
23,804 KB
testcase_10 AC 26 ms
25,840 KB
testcase_11 AC 26 ms
24,060 KB
testcase_12 AC 30 ms
32,184 KB
testcase_13 AC 25 ms
24,092 KB
testcase_14 AC 25 ms
23,936 KB
testcase_15 AC 24 ms
23,936 KB
testcase_16 AC 25 ms
24,060 KB
testcase_17 AC 25 ms
24,236 KB
testcase_18 AC 25 ms
23,808 KB
testcase_19 AC 25 ms
26,156 KB
testcase_20 AC 27 ms
25,764 KB
testcase_21 AC 26 ms
24,064 KB
testcase_22 AC 26 ms
22,320 KB
testcase_23 AC 25 ms
26,024 KB
testcase_24 AC 26 ms
25,776 KB
testcase_25 AC 26 ms
25,888 KB
testcase_26 AC 26 ms
22,076 KB
testcase_27 AC 27 ms
25,896 KB
testcase_28 AC 26 ms
26,016 KB
testcase_29 AC 27 ms
26,028 KB
testcase_30 AC 25 ms
23,684 KB
testcase_31 AC 26 ms
26,020 KB
testcase_32 AC 25 ms
23,676 KB
testcase_33 AC 27 ms
28,192 KB
testcase_34 AC 26 ms
23,676 KB
testcase_35 AC 28 ms
28,092 KB
testcase_36 AC 26 ms
23,732 KB
testcase_37 AC 26 ms
24,060 KB
testcase_38 AC 27 ms
23,932 KB
testcase_39 AC 26 ms
26,016 KB
testcase_40 AC 25 ms
25,892 KB
testcase_41 AC 26 ms
24,232 KB
testcase_42 AC 25 ms
24,112 KB
testcase_43 AC 25 ms
23,800 KB
testcase_44 AC 26 ms
23,984 KB
testcase_45 AC 25 ms
23,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
 
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		found=false;
		int i0=-1;int j0=-1;
		for(int i=0;i<N;i++){
			for(int j=0;j<M;j++){
				if(S[i][j]=='.')continue;
				if(i0==-1){
					i0=i;j0=j;
					continue;
				}
				if(!found){
					check(i-i0,j-j0);
				}
			}
		}
		Console.WriteLine(found?"YES":"NO");
	}
	
	void check(int offi,int offj){
		if(found)return;
		bool[,] brd=new bool[N,M];
		bool chk=true;
		for(int i=0;i<N;i++){
			for(int j=0;j<M;j++){
				if(S[i][j]=='.')continue;
				if(brd[i,j]==true)continue;
				if(i+offi<N && i+offi>=0 && j+offj<M && j+offj>=0){
					brd[i,j]=true;
					if(S[i+offi][j+offj]=='.')return;
					brd[i+offi,j+offj]=true;
				}else{
					return;
				}
			}
		}
		if(chk)found=true;
	}
	
	
	
	
	bool found;
	
	int N,M;
	String[] S;
	public Sol(){
		var d=ria();
		N=d[0];M=d[1];
		S=new String[N];
		for(int i=0;i<N;i++)S[i]=rs();
	}




	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
0