結果
問題 | No.179 塗り分け |
ユーザー | 14番 |
提出日時 | 2016-03-29 23:32:18 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 1,186 ms / 3,000 ms |
コード長 | 3,079 bytes |
コンパイル時間 | 1,199 ms |
コンパイル使用メモリ | 114,008 KB |
実行使用メモリ | 49,292 KB |
最終ジャッジ日時 | 2024-07-23 14:36:12 |
合計ジャッジ時間 | 13,430 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
21,684 KB |
testcase_01 | AC | 26 ms
26,044 KB |
testcase_02 | AC | 26 ms
23,936 KB |
testcase_03 | AC | 25 ms
23,856 KB |
testcase_04 | AC | 25 ms
23,936 KB |
testcase_05 | AC | 85 ms
27,852 KB |
testcase_06 | AC | 26 ms
24,060 KB |
testcase_07 | AC | 1,186 ms
45,444 KB |
testcase_08 | AC | 648 ms
47,244 KB |
testcase_09 | AC | 659 ms
43,132 KB |
testcase_10 | AC | 32 ms
24,220 KB |
testcase_11 | AC | 33 ms
26,136 KB |
testcase_12 | AC | 581 ms
47,244 KB |
testcase_13 | AC | 27 ms
24,064 KB |
testcase_14 | AC | 26 ms
23,856 KB |
testcase_15 | AC | 25 ms
24,112 KB |
testcase_16 | AC | 26 ms
25,780 KB |
testcase_17 | AC | 25 ms
24,112 KB |
testcase_18 | AC | 45 ms
24,832 KB |
testcase_19 | AC | 46 ms
27,028 KB |
testcase_20 | AC | 615 ms
48,292 KB |
testcase_21 | AC | 724 ms
45,580 KB |
testcase_22 | AC | 892 ms
47,484 KB |
testcase_23 | AC | 33 ms
23,960 KB |
testcase_24 | AC | 667 ms
45,328 KB |
testcase_25 | AC | 36 ms
26,140 KB |
testcase_26 | AC | 120 ms
31,872 KB |
testcase_27 | AC | 675 ms
43,268 KB |
testcase_28 | AC | 55 ms
24,112 KB |
testcase_29 | AC | 658 ms
43,384 KB |
testcase_30 | AC | 289 ms
49,292 KB |
testcase_31 | AC | 664 ms
47,472 KB |
testcase_32 | AC | 200 ms
41,724 KB |
testcase_33 | AC | 660 ms
45,180 KB |
testcase_34 | AC | 146 ms
36,600 KB |
testcase_35 | AC | 676 ms
45,184 KB |
testcase_36 | AC | 27 ms
24,112 KB |
testcase_37 | AC | 25 ms
23,992 KB |
testcase_38 | AC | 26 ms
23,984 KB |
testcase_39 | AC | 26 ms
24,064 KB |
testcase_40 | AC | 25 ms
23,940 KB |
testcase_41 | AC | 26 ms
25,904 KB |
testcase_42 | AC | 26 ms
25,916 KB |
testcase_43 | AC | 34 ms
23,852 KB |
testcase_44 | AC | 91 ms
28,228 KB |
testcase_45 | AC | 28 ms
23,812 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Text; public class Program { public void Proc(){ Reader.IsDebug = false; int[] inpt = Reader.GetInt(); int wLen = inpt[1]; int hLen = inpt[0]; this.Map = new BlockState[hLen, wLen]; for(int i=0; i<hLen; i++) { string str = Reader.ReadLine(); for(int j=0;j<str.Length; j++) { if(str[j] == '#') { this.Map[i,j] = BlockState.black; } else { this.Map[i,j] = BlockState.white; } } } for(int i=0; i<hLen; i++) { for(int j=(wLen -1)*-1; j<wLen; j++) { if(CanPaint(j,i)) { Console.WriteLine("YES"); return; } } } Console.WriteLine("NO"); } private bool CanPaint(int x, int y) { if(x == 0 && y == 0) { return false; } bool isPainted = false; BlockState[,] map = CopyMap(); for(int i=0; i<map.GetLength(0); i++) { for(int j=0; j<map.GetLength(1); j++) { if(map[i,j]==BlockState.black) { int px = j+x; int py = i+y; if(px >= 0 && px < map.GetLength(1) && py>=0 && py < map.GetLength(0) && map[py, px] == BlockState.black) { map[i,j] = BlockState.blue; map[py, px] = BlockState.read; isPainted = true; } else { return false; } } } } return isPainted; } private BlockState[,] Map; private BlockState[,] CopyMap() { BlockState[,] newMap = new BlockState[this.Map.GetLength(0), this.Map.GetLength(1)]; for(int i=0; i<this.Map.GetLength(0); i++) { for(int j=0; j<this.Map.GetLength(1); j++) { newMap[i,j] = Map[i,j]; } } return newMap; } enum BlockState { white, black, read, blue } public static void Main(string[] args) { Program prg = new Program(); prg.Proc(); } } class Reader { public static bool IsDebug = true; private static System.IO.StringReader sr; public static string ReadLine() { if(IsDebug) { if(sr == null) { sr = new System.IO.StringReader(initStr.Trim()); } return sr.ReadLine(); } else { return Console.ReadLine(); } } public static int[] GetInt(char delimiter = ' ') { string[] inpt = ReadLine().Split(delimiter); int[] ret = new int[inpt.Length]; for(int i=0; i<inpt.Length; i++) { ret[i] = int.Parse(inpt[i]); } return ret; } private static string initStr = @" "; }