結果

問題 No.179 塗り分け
ユーザー mbanmban
提出日時 2016-11-09 17:21:43
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,123 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 111,728 KB
実行使用メモリ 38,920 KB
最終ジャッジ日時 2024-10-03 03:28:40
合計ジャッジ時間 4,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,792 KB
testcase_01 AC 25 ms
17,664 KB
testcase_02 AC 26 ms
17,920 KB
testcase_03 AC 24 ms
17,792 KB
testcase_04 AC 26 ms
17,920 KB
testcase_05 AC 28 ms
22,016 KB
testcase_06 AC 26 ms
18,816 KB
testcase_07 WA -
testcase_08 AC 75 ms
37,256 KB
testcase_09 AC 26 ms
18,176 KB
testcase_10 AC 50 ms
36,992 KB
testcase_11 AC 49 ms
38,656 KB
testcase_12 AC 73 ms
38,920 KB
testcase_13 AC 25 ms
17,920 KB
testcase_14 AC 26 ms
17,920 KB
testcase_15 AC 26 ms
17,920 KB
testcase_16 AC 25 ms
17,920 KB
testcase_17 WA -
testcase_18 AC 52 ms
37,120 KB
testcase_19 AC 49 ms
38,016 KB
testcase_20 AC 72 ms
38,012 KB
testcase_21 AC 81 ms
37,388 KB
testcase_22 AC 93 ms
37,116 KB
testcase_23 AC 51 ms
36,864 KB
testcase_24 AC 75 ms
37,328 KB
testcase_25 AC 62 ms
37,124 KB
testcase_26 AC 41 ms
35,584 KB
testcase_27 AC 75 ms
37,396 KB
testcase_28 AC 40 ms
34,304 KB
testcase_29 AC 75 ms
37,256 KB
testcase_30 AC 45 ms
36,992 KB
testcase_31 AC 78 ms
37,080 KB
testcase_32 AC 61 ms
37,388 KB
testcase_33 AC 75 ms
37,380 KB
testcase_34 AC 50 ms
36,992 KB
testcase_35 AC 74 ms
37,256 KB
testcase_36 AC 25 ms
17,792 KB
testcase_37 AC 25 ms
17,920 KB
testcase_38 AC 24 ms
17,792 KB
testcase_39 AC 25 ms
18,048 KB
testcase_40 AC 24 ms
17,792 KB
testcase_41 AC 24 ms
17,792 KB
testcase_42 AC 25 ms
17,664 KB
testcase_43 AC 25 ms
18,688 KB
testcase_44 AC 27 ms
21,888 KB
testcase_45 AC 25 ms
17,792 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.Generic;
using System.Linq;

class Magatro
{
    static int H, W;
    static string[] S;
    static void Main()
    {
        Read();
        
       for(int x = -W; x <= W; x++)
        {
            for(int y = 0; y <= H; y++)
            {
                if (x == 0 && y == 0)
                {
                    continue;
                }
                if (s(x, y))
                {
                    Console.WriteLine("YES");
                    return;
                }
                
            }
        }
        Console.WriteLine("NO");
    }
    static bool s(int x,int y)
    {
        int[,] ban = new int[H, W];
        for(int i = 0; i < H; i++)
        {
            for(int j = 0; j < W; j++)
            {
                if (S[i][j] == '#')
                {
                    if (ban[i, j] == 0)
                    {
                        ban[i, j] = 1;
                        int bly = i + y;
                        int blx = j + x;
                      
                        if (blx < W && blx >= 0 && bly < H && bly >= 0)
                        {
                            if (S[bly][blx] != '#')
                            {
                                return false;
                            }
                            ban[bly, blx] = 2;
                        }
                        else
                        {
                            return false;
                        }
                    }
                }
            }
        }
        for (int i = 0; i < H; i++)
        {
            for (int j = 0; j < W; j++)
            {
                if (S[i][j] == '#' && ban[i, j] == 0)
                {
                    return false;
                }
               
            }
        }
                return true;
    }
    static void Read()
    {

        string[] s = Console.ReadLine().Split(' ');
        H = int.Parse(s[0]);
        W = int.Parse(s[1]);
        S = new string[H];
        for(int i = 0; i < H; i++)
        {
            S[i] = Console.ReadLine();
        }
    }
   
}
0