結果

問題 No.179 塗り分け
ユーザー bayashiko_rbayashiko_r
提出日時 2019-01-03 02:32:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 154 ms / 3,000 ms
コード長 4,309 bytes
コンパイル時間 1,105 ms
コンパイル使用メモリ 110,976 KB
実行使用メモリ 26,132 KB
最終ジャッジ日時 2024-07-23 14:55:11
合計ジャッジ時間 4,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,748 KB
testcase_01 AC 25 ms
24,136 KB
testcase_02 AC 26 ms
23,828 KB
testcase_03 AC 25 ms
21,816 KB
testcase_04 AC 25 ms
24,008 KB
testcase_05 AC 26 ms
23,880 KB
testcase_06 AC 26 ms
23,964 KB
testcase_07 AC 25 ms
23,984 KB
testcase_08 AC 110 ms
25,880 KB
testcase_09 AC 111 ms
24,092 KB
testcase_10 AC 26 ms
24,012 KB
testcase_11 AC 26 ms
24,012 KB
testcase_12 AC 123 ms
24,240 KB
testcase_13 AC 26 ms
23,984 KB
testcase_14 AC 25 ms
25,876 KB
testcase_15 AC 26 ms
25,876 KB
testcase_16 AC 24 ms
22,196 KB
testcase_17 AC 26 ms
24,136 KB
testcase_18 AC 29 ms
24,116 KB
testcase_19 AC 29 ms
26,000 KB
testcase_20 AC 26 ms
23,884 KB
testcase_21 AC 25 ms
23,756 KB
testcase_22 AC 114 ms
24,144 KB
testcase_23 AC 27 ms
24,108 KB
testcase_24 AC 113 ms
26,000 KB
testcase_25 AC 69 ms
23,880 KB
testcase_26 AC 70 ms
25,924 KB
testcase_27 AC 132 ms
24,012 KB
testcase_28 AC 92 ms
23,856 KB
testcase_29 AC 145 ms
24,088 KB
testcase_30 AC 63 ms
26,132 KB
testcase_31 AC 154 ms
23,756 KB
testcase_32 AC 84 ms
23,632 KB
testcase_33 AC 145 ms
24,012 KB
testcase_34 AC 32 ms
26,012 KB
testcase_35 AC 152 ms
24,236 KB
testcase_36 AC 26 ms
25,928 KB
testcase_37 AC 25 ms
22,196 KB
testcase_38 AC 26 ms
26,056 KB
testcase_39 AC 25 ms
23,880 KB
testcase_40 AC 26 ms
26,012 KB
testcase_41 AC 26 ms
23,984 KB
testcase_42 AC 25 ms
24,088 KB
testcase_43 AC 27 ms
23,880 KB
testcase_44 AC 39 ms
23,624 KB
testcase_45 AC 26 ms
24,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program {
    static void Main(string[] args) {
        #region

        //入力
        string a = Console.ReadLine();
        int H = int.Parse(a.Split(' ')[0]);
        int W = int.Parse(a.Split(' ')[1]);

        string[] row = new string[H];

        for (int i = 0; i < H; i++) {
            row[i] = Console.ReadLine();
        }

        //#を数える用の変数
        int num_sharp = 0;

        //全マスを二行に列の配列として扱う
        char[,] field = new char[H, W];
        //置き換え用
        char[,] kari = new char[H, W];
        for (int i = 0; i < H; i++) {
            for (int j = 0; j < W; j++) {
                field[i, j] = row[i][j];
                kari[i, j] = field[i, j];
                if (row[i][j] == '#') {
                    num_sharp++;
                }
            }
        }

        //Console.WriteLine(num_sharp);

        #endregion //ここは大丈夫

        //回答用フラグ
        bool flg = false;

        if (num_sharp % 2 == 1 || num_sharp == 0) {
            //#の個数が奇数の時(もしくは0の時)は、絶対にペアは作れない
            flg = false;
        } else {


            //計算実行
            for (int i = 0; i < W; i++) {
                for (int j = -H + 1; j < H; j++) {
                    //Console.WriteLine("●(i, j) = (" + i + "," + j + ")");

                    //毎回リセットする
                    int counter = 0;
                    for (int an = 0; an < H; an++) {
                        for (int b = 0; b < W; b++) {
                            kari[an, b] = field[an, b];
                        }
                    }

                    //平行移動しないものは飛ばす
                    if (i == 0 && j == 0) {
                        continue;
                    }
                  
                    //kariのR-Area全てのcharについて、調査する
                    if (j >= 0) {
                        for (int tate = j; tate < H; tate++) {
                            
                            for (int yoko = 0; yoko < W - i; yoko++) {
                                //Console.WriteLine("(tate, yoko) = (" + tate + "," + yoko + ")");
                                if (kari[tate, yoko] == '#') {
                                    //Console.WriteLine("a");
                                    if (kari[tate, yoko] == kari[tate - j, yoko + i]) {
                                        counter++;
                                        //Console.WriteLine("b");
                                        kari[tate, yoko] = '.';
                                        kari[tate - j, yoko + i] = '.';
                                    }
                                    //Console.WriteLine(counter);
                                }
                            }
                        }
                    } else if (j < 0) {
                        for (int tate = 0; tate < H + j; tate++) {
                            for (int yoko = 0; yoko < W - i; yoko++) {
                                //Console.WriteLine("(tate, yoko) = (" + tate + "," + yoko + ")");
                                if (kari[tate, yoko] == '#') {
                                    //Console.WriteLine("a");
                                    if (kari[tate, yoko] == kari[tate - j, yoko + i]) {
                                        counter++;
                                        //Console.WriteLine("b");
                                        kari[tate, yoko] = '.';
                                        kari[tate - j, yoko + i] = '.';
                                    }
                                    //Console.WriteLine(counter);
                                }
                            }
                        }
                    }
                    //Console.WriteLine(counter);

                    //flgの判定
                    if (counter == num_sharp / 2) {
                        flg = true;
                        goto LABEL;
                    }
                }
            }
        }

        LABEL:

        //出力
        if (!flg) {
            Console.WriteLine("NO");
        } else {
            Console.WriteLine("YES");
        }
    }
}
0