結果

問題 No.179 塗り分け
ユーザー mbanmban
提出日時 2016-11-09 17:24:34
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 165 ms / 3,000 ms
コード長 2,197 bytes
コンパイル時間 1,041 ms
コンパイル使用メモリ 113,124 KB
実行使用メモリ 47,616 KB
最終ジャッジ日時 2024-07-23 14:39:57
合計ジャッジ時間 4,254 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,648 KB
testcase_01 AC 25 ms
23,904 KB
testcase_02 AC 25 ms
24,040 KB
testcase_03 AC 25 ms
24,108 KB
testcase_04 AC 24 ms
25,888 KB
testcase_05 AC 28 ms
30,260 KB
testcase_06 AC 25 ms
24,108 KB
testcase_07 AC 165 ms
47,492 KB
testcase_08 AC 74 ms
45,324 KB
testcase_09 AC 26 ms
24,492 KB
testcase_10 AC 50 ms
47,492 KB
testcase_11 AC 48 ms
46,860 KB
testcase_12 AC 74 ms
47,160 KB
testcase_13 AC 25 ms
23,724 KB
testcase_14 AC 25 ms
24,108 KB
testcase_15 AC 25 ms
23,980 KB
testcase_16 AC 25 ms
24,108 KB
testcase_17 AC 24 ms
24,036 KB
testcase_18 AC 51 ms
45,188 KB
testcase_19 AC 48 ms
46,256 KB
testcase_20 AC 73 ms
45,968 KB
testcase_21 AC 80 ms
47,616 KB
testcase_22 AC 94 ms
45,568 KB
testcase_23 AC 51 ms
47,236 KB
testcase_24 AC 77 ms
45,448 KB
testcase_25 AC 61 ms
45,368 KB
testcase_26 AC 41 ms
41,700 KB
testcase_27 AC 76 ms
45,456 KB
testcase_28 AC 38 ms
40,420 KB
testcase_29 AC 74 ms
47,372 KB
testcase_30 AC 44 ms
45,188 KB
testcase_31 AC 75 ms
45,328 KB
testcase_32 AC 60 ms
45,500 KB
testcase_33 AC 75 ms
47,496 KB
testcase_34 AC 50 ms
47,236 KB
testcase_35 AC 74 ms
47,368 KB
testcase_36 AC 25 ms
23,840 KB
testcase_37 AC 25 ms
24,040 KB
testcase_38 AC 24 ms
23,784 KB
testcase_39 AC 25 ms
24,036 KB
testcase_40 AC 25 ms
25,820 KB
testcase_41 AC 24 ms
23,788 KB
testcase_42 AC 25 ms
21,936 KB
testcase_43 AC 25 ms
21,936 KB
testcase_44 AC 27 ms
30,000 KB
testcase_45 AC 25 ms
26,008 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;
                        }
                    }
                }
            }
        }
        bool a = false;
        for (int i = 0; i < H; i++)
        {
            for (int j = 0; j < W; j++)
            {
                if (S[i][j] == '#' )
                {
                    a = true;
                    if( ban[i, j] == 0)
                    return false;
                }
               
            }
        }
                return a;
    }
    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