結果

問題 No.179 塗り分け
ユーザー skewesskewes
提出日時 2015-12-29 12:33:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 3,000 ms
コード長 2,317 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 112,324 KB
実行使用メモリ 30,264 KB
最終ジャッジ日時 2024-07-23 14:33:30
合計ジャッジ時間 3,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
26,020 KB
testcase_01 AC 26 ms
23,944 KB
testcase_02 AC 25 ms
26,152 KB
testcase_03 AC 25 ms
22,068 KB
testcase_04 AC 25 ms
24,076 KB
testcase_05 AC 26 ms
26,148 KB
testcase_06 AC 25 ms
23,820 KB
testcase_07 AC 25 ms
24,072 KB
testcase_08 AC 25 ms
23,944 KB
testcase_09 AC 25 ms
24,112 KB
testcase_10 AC 25 ms
24,116 KB
testcase_11 AC 26 ms
23,964 KB
testcase_12 AC 30 ms
30,004 KB
testcase_13 AC 25 ms
21,816 KB
testcase_14 AC 26 ms
24,200 KB
testcase_15 AC 25 ms
23,944 KB
testcase_16 AC 25 ms
24,072 KB
testcase_17 AC 25 ms
23,816 KB
testcase_18 AC 25 ms
24,108 KB
testcase_19 AC 26 ms
26,028 KB
testcase_20 AC 28 ms
26,148 KB
testcase_21 AC 26 ms
23,812 KB
testcase_22 AC 27 ms
22,068 KB
testcase_23 AC 26 ms
23,948 KB
testcase_24 AC 25 ms
24,228 KB
testcase_25 AC 26 ms
24,116 KB
testcase_26 AC 25 ms
24,368 KB
testcase_27 AC 27 ms
26,028 KB
testcase_28 AC 26 ms
26,240 KB
testcase_29 AC 28 ms
26,264 KB
testcase_30 AC 26 ms
24,332 KB
testcase_31 AC 28 ms
26,268 KB
testcase_32 AC 27 ms
24,204 KB
testcase_33 AC 27 ms
24,236 KB
testcase_34 AC 27 ms
23,948 KB
testcase_35 AC 28 ms
30,264 KB
testcase_36 AC 25 ms
23,944 KB
testcase_37 AC 26 ms
26,240 KB
testcase_38 AC 25 ms
22,328 KB
testcase_39 AC 26 ms
26,244 KB
testcase_40 AC 27 ms
25,984 KB
testcase_41 AC 25 ms
23,968 KB
testcase_42 AC 26 ms
24,228 KB
testcase_43 AC 25 ms
21,940 KB
testcase_44 AC 25 ms
23,944 KB
testcase_45 AC 25 ms
24,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace yukicoder
{
    class _179
    {
        static void Main()
        {
            int[] hw = Array.ConvertAll(Console.ReadLine().Split(' ')
               , x => int.Parse(x));
            int h = hw[0];
            int w = hw[1];
            bool[,] b = new bool[h, w];
            for (int i = 0; i < h; i++)
            {
                string iw = Console.ReadLine();

                for (int j = 0; j < w; j++)
                {
                    char ij = iw[j];

                    b[i, j] = ij == '#';
                }
            }

            int i0 = -1;
            int j0 = -1;
            for (int i = 0; i < h; i++)
            {
                for (int j = 0; j < w; j++)
                {
                    if(b[i,j])
                    {
                        if (i0 == -1 && j0 == -1)
                        {
                            i0 = i;
                            j0 = j;
                        }
                        else
                        {
                            int hd = i - i0;
                            int wd = j - j0;

                            if (isp(h, w, (bool[,])b.Clone(), hd, wd))
                            {
                                Console.WriteLine("YES");
                                return;
                            }
                        }
                    }
                }
            }

            Console.WriteLine("NO");
        }

        static bool isp(int h, int w, bool[,] b, int hd, int wd)
        {
            for (int id = 0; id < h; id++)
            {
                for (int jd = 0; jd < w; jd++)
                {
                    if (b[id, jd])
                    {
                        if (id + hd < 0 || jd + wd < 0
                            || id + hd > h - 1 || jd + wd > w - 1)
                        {
                            return false;
                        }
                        if (b[id + hd, jd + wd])
                        {
                            b[id + hd, jd + wd] = false;
                        }
                        else
                        {
                            return false;
                        }
                    }
                }
            }
            return true;
        }
    }
}
0