結果

問題 No.179 塗り分け
ユーザー nuwasoginuwasogi
提出日時 2015-11-23 16:59:50
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 4,682 bytes
コンパイル時間 1,147 ms
コンパイル使用メモリ 115,208 KB
実行使用メモリ 48,612 KB
最終ジャッジ日時 2024-04-14 05:55:18
合計ジャッジ時間 5,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
27,312 KB
testcase_01 AC 30 ms
27,300 KB
testcase_02 AC 33 ms
29,488 KB
testcase_03 AC 32 ms
27,300 KB
testcase_04 AC 32 ms
25,388 KB
testcase_05 AC 30 ms
27,168 KB
testcase_06 AC 32 ms
27,212 KB
testcase_07 AC 30 ms
25,280 KB
testcase_08 AC 165 ms
46,820 KB
testcase_09 AC 162 ms
46,836 KB
testcase_10 AC 32 ms
25,444 KB
testcase_11 AC 32 ms
25,192 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 29 ms
27,172 KB
testcase_16 AC 31 ms
25,388 KB
testcase_17 AC 29 ms
25,380 KB
testcase_18 AC 35 ms
25,768 KB
testcase_19 AC 34 ms
25,836 KB
testcase_20 AC 31 ms
27,296 KB
testcase_21 AC 29 ms
23,088 KB
testcase_22 WA -
testcase_23 AC 32 ms
25,332 KB
testcase_24 WA -
testcase_25 AC 32 ms
23,196 KB
testcase_26 AC 48 ms
32,804 KB
testcase_27 WA -
testcase_28 AC 36 ms
27,052 KB
testcase_29 AC 155 ms
48,612 KB
testcase_30 AC 83 ms
48,384 KB
testcase_31 WA -
testcase_32 AC 65 ms
42,484 KB
testcase_33 AC 155 ms
46,704 KB
testcase_34 AC 53 ms
33,204 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 30 ms
25,384 KB
testcase_38 AC 31 ms
25,384 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 29 ms
25,256 KB
testcase_42 WA -
testcase_43 AC 33 ms
25,004 KB
testcase_44 AC 41 ms
29,548 KB
testcase_45 AC 32 ms
25,260 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;

namespace Nuriwake_CS
{
    class Program
    {
        static void Main(string[] args)
        {
            Solver mysol = new Solver();
            mysol.Solve();
        }
    }

    class Solver
    {
        public void Solve()
        {
            bool ans = B.CanNuriwake();
            Console.WriteLine(ans ? "YES" : "NO");
        }

        int H, W;
        Board B;

        public Solver()
        {
            var hw = ria();
            H = hw[0];
            W = hw[1];
            string[] s = new string[H];

            for (int i = 0; i < s.Length; i++)
            {
                s[i] = rs();
            }
            B = new Board(H, W, s);

        }

        static String rs() { return Console.ReadLine(); }
        static int ri() { return int.Parse(Console.ReadLine()); }
        static long rl() { return long.Parse(Console.ReadLine()); }
        static double rd() { return double.Parse(Console.ReadLine()); }
        static String[] rsa() { return Console.ReadLine().Split(' '); }
        static int[] ria() { return Console.ReadLine().Split(' ').Select(e => int.Parse(e)).ToArray(); }
        static long[] rla() { return Console.ReadLine().Split(' ').Select(e => long.Parse(e)).ToArray(); }
        static double[] rda() { return Console.ReadLine().Split(' ').Select(e => double.Parse(e)).ToArray(); }
    }

    class Board
    {
        public enum color { Black, White, Red, Blue }

        int H, W;
        color[,] BaseBoard;
        int BlackNum;

        public Board(int h, int w, string[] s)
        {
            H = h;
            W = w;
            BlackNum = 0;
            BaseBoard = new color[H, W];
            for (int i = 0; i < h; i++)
            {
                for (int j = 0; j < w; j++)
                {
                    if (s[i][j] == '#')
                    {
                        BaseBoard[i, j] = color.Black;
                        BlackNum++;
                    }
                    else
                    {
                         BaseBoard[i,j] = color.White;
                    }
                }
            }
        }

        public bool CanNuriwake()
        {
            if(BlackNum == 0 || BlackNum%2 == 1)
            {
                return false;
            }
            int bn2 = BlackNum / 2;

            color[,] curBoard = new color[H, W];
            var shifts = Coordinate.MakeParallelShifts(H, W);
            foreach (Coordinate c in shifts)
            {
                curBoard = BaseCopy();
                bool ok = true;
                for (int i = 0; i < H; i++)
                {
                    for (int j = 0; j < W; j++)
                    {
                        if (curBoard[i, j] == color.Black)
                        {
                            curBoard[i, j] = color.Red;
                            int nx = i + c.X;
                            int ny = j + c.Y;

                            if(0<= nx && nx < H && 0<= ny && ny < W)
                            {
                                if (curBoard[nx,ny] == color.Black)
                                {
                                    curBoard[nx, ny] = color.Blue;
                                }
                            }
                            else
                            {
                                ok = false;
                                break;
                            }
                        }
                    }
                    if (ok == false) break;
                }
                if (ok) return ok;
            }
            return false;
        }
        color[,] BaseCopy()
        {
            color[,] ret = new color[H, W];
            for (int i = 0; i < H; i++)
            {
                for (int j = 0; j < W; j++)
                {
                    ret[i, j] = BaseBoard[i, j];
                }
            }
            return ret;
        }
    }

    struct Coordinate
    {
        public int X, Y;
        Coordinate(int x, int y)
        {
            X = x;
            Y = y;
        }
        public static Queue<Coordinate> MakeParallelShifts(int H, int W)
        {
            Queue<Coordinate> q = new Queue<Coordinate>();
            for (int i = 0, j = 0; j < W; j++)
            {
                q.Enqueue(new Coordinate(i, j));
            }
            for (int i = 1; i < H; i++)
            {
                for (int j = -W + 1; j < W; j++)
                {
                    q.Enqueue(new Coordinate(i, j));
                }
            }
            q.Dequeue();
            return q;
        }
    }
}
0