結果

問題 No.179 塗り分け
ユーザー suzusuzu
提出日時 2023-05-23 12:36:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 70 ms / 3,000 ms
コード長 1,865 bytes
コンパイル時間 4,299 ms
コンパイル使用メモリ 115,512 KB
実行使用メモリ 27,320 KB
最終ジャッジ日時 2024-06-02 06:47:24
合計ジャッジ時間 7,107 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,292 KB
testcase_01 AC 31 ms
23,216 KB
testcase_02 AC 30 ms
22,960 KB
testcase_03 AC 31 ms
25,420 KB
testcase_04 AC 30 ms
25,160 KB
testcase_05 AC 31 ms
25,416 KB
testcase_06 AC 31 ms
23,220 KB
testcase_07 AC 32 ms
25,160 KB
testcase_08 AC 39 ms
25,392 KB
testcase_09 AC 41 ms
25,128 KB
testcase_10 AC 37 ms
25,284 KB
testcase_11 AC 36 ms
25,416 KB
testcase_12 AC 39 ms
25,136 KB
testcase_13 AC 32 ms
27,216 KB
testcase_14 AC 33 ms
25,292 KB
testcase_15 AC 32 ms
22,964 KB
testcase_16 AC 33 ms
25,032 KB
testcase_17 AC 34 ms
27,320 KB
testcase_18 AC 37 ms
25,164 KB
testcase_19 AC 37 ms
27,076 KB
testcase_20 AC 33 ms
25,416 KB
testcase_21 AC 33 ms
25,012 KB
testcase_22 AC 70 ms
23,224 KB
testcase_23 AC 36 ms
25,196 KB
testcase_24 AC 42 ms
27,116 KB
testcase_25 AC 37 ms
25,132 KB
testcase_26 AC 36 ms
25,388 KB
testcase_27 AC 38 ms
25,184 KB
testcase_28 AC 35 ms
25,412 KB
testcase_29 AC 40 ms
25,028 KB
testcase_30 AC 38 ms
25,416 KB
testcase_31 AC 38 ms
25,392 KB
testcase_32 AC 35 ms
25,260 KB
testcase_33 AC 37 ms
25,088 KB
testcase_34 AC 35 ms
25,032 KB
testcase_35 AC 38 ms
27,104 KB
testcase_36 AC 30 ms
27,204 KB
testcase_37 AC 30 ms
25,280 KB
testcase_38 AC 31 ms
25,156 KB
testcase_39 AC 31 ms
25,036 KB
testcase_40 AC 31 ms
25,160 KB
testcase_41 AC 31 ms
27,080 KB
testcase_42 AC 31 ms
25,168 KB
testcase_43 AC 31 ms
25,516 KB
testcase_44 AC 31 ms
25,160 KB
testcase_45 AC 31 ms
25,288 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.Linq;
using System.Collections.Generic;

namespace yukicoder
{
	enum Colors
	{
		Black,
		White,
		Red,
		Blue
	}
	
	class pg
	{
		static void Main(string[] args)
		{
			var line1 = Console.ReadLine().Split(' ').Select(c => int.Parse(c)).ToArray();
			int H = line1[0];
			int W = line1[1];
		
			var defaultColors = new Colors[H,W];
			var paintColors = new Colors[H,W];
		
			int bnum = 0;//黒の数
		
			for(int ih = 0;ih < H;ih++)
			{
				var line2 = Console.ReadLine().Select(c => c.ToString()).ToArray();
				for(int iw = 0;iw < W;iw++)
				{
					if(line2[iw] == "#")
					{
						defaultColors[ih,iw] = Colors.Black;
						bnum++;
					}else
					{	
						defaultColors[ih,iw] = Colors.White;
					}
					
				}
			}	
		
			Array.Copy(defaultColors,paintColors,defaultColors.Length);
		
		
			if(bnum % 2 == 1 || bnum == 0)//黒の数が奇数か0だったらnoを出力
			{
				Console.WriteLine("NO");
				return;
			}
			
			for(int gapH = 1 - H;gapH < H;gapH++)//ずれ
			{
				for(int gapW = 1 - W;gapW < W;gapW++)//ずれ
				{
					for(int ih = 0;ih < H;ih++)//paint更新
					{
						for(int iw = 0;iw < W;iw++)//paint更新
						{
							if(paintColors[ih,iw] == Colors.Black)
							{
								paintColors[ih,iw] = Colors.Red;
								
								int nextH = ih + gapH;
								int nextW = iw + gapW;
								if(nextH >= H || nextW >= W || nextH < 0 || nextW < 0 ||paintColors[nextH,nextW] != Colors.Black)//配列を逸脱するか、塗り替え先が黒でないとき失敗
								{
									goto PaintEnd;
								}
								
								paintColors[nextH,nextW] = Colors.Blue;
							}
						}
					}
					Console.WriteLine("YES");//最後まで塗り替えられた
					return;
					
					PaintEnd:
					Array.Copy(defaultColors,paintColors,defaultColors.Length);
				}
			}
			Console.WriteLine("NO");
		}
	}
}	
0