結果

問題 No.179 塗り分け
ユーザー crazybbb3crazybbb3
提出日時 2016-12-07 21:50:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 3,000 ms
コード長 2,901 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 77,740 KB
実行使用メモリ 50,560 KB
最終ジャッジ日時 2024-07-23 14:40:36
合計ジャッジ時間 7,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,032 KB
testcase_01 AC 54 ms
50,560 KB
testcase_02 AC 51 ms
37,012 KB
testcase_03 AC 50 ms
37,228 KB
testcase_04 AC 50 ms
37,088 KB
testcase_05 AC 81 ms
38,820 KB
testcase_06 AC 60 ms
37,256 KB
testcase_07 AC 166 ms
38,800 KB
testcase_08 AC 94 ms
39,008 KB
testcase_09 AC 115 ms
39,240 KB
testcase_10 AC 93 ms
38,536 KB
testcase_11 AC 91 ms
38,548 KB
testcase_12 AC 111 ms
38,760 KB
testcase_13 AC 51 ms
37,260 KB
testcase_14 AC 52 ms
37,268 KB
testcase_15 AC 51 ms
37,096 KB
testcase_16 AC 51 ms
37,160 KB
testcase_17 AC 51 ms
36,824 KB
testcase_18 AC 98 ms
38,480 KB
testcase_19 AC 96 ms
38,672 KB
testcase_20 AC 99 ms
38,852 KB
testcase_21 AC 161 ms
39,260 KB
testcase_22 AC 203 ms
39,668 KB
testcase_23 AC 99 ms
38,768 KB
testcase_24 AC 125 ms
39,480 KB
testcase_25 AC 94 ms
39,104 KB
testcase_26 AC 100 ms
38,672 KB
testcase_27 AC 101 ms
38,880 KB
testcase_28 AC 105 ms
38,780 KB
testcase_29 AC 106 ms
38,804 KB
testcase_30 AC 107 ms
38,888 KB
testcase_31 AC 111 ms
39,072 KB
testcase_32 AC 99 ms
38,916 KB
testcase_33 AC 95 ms
38,924 KB
testcase_34 AC 99 ms
38,568 KB
testcase_35 AC 99 ms
39,060 KB
testcase_36 AC 50 ms
37,088 KB
testcase_37 AC 51 ms
37,296 KB
testcase_38 AC 52 ms
37,096 KB
testcase_39 AC 51 ms
37,324 KB
testcase_40 AC 52 ms
37,112 KB
testcase_41 AC 53 ms
37,032 KB
testcase_42 AC 51 ms
37,140 KB
testcase_43 AC 58 ms
36,888 KB
testcase_44 AC 77 ms
38,852 KB
testcase_45 AC 53 ms
37,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.StringTokenizer;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        int h = ni();
        int w = ni();
        String[] s = nsa(h);

        boolean[][] used = new boolean[h][w];
        for (int i = 1 - h; i < h; i++) {
            outside:
            for (int j = 1 - w; j < w; j++) {
                if (i == 0 && j == 0) {
                    continue;
                }

                for (int k = 0; k < h; k++) {
                    Arrays.fill(used[k], false);
                }

                boolean flg = false;

                for (int k = 0; k < h; k++) {
                    for (int l = 0; l < w; l++) {
                        if (s[k].charAt(l) == '#' && !used[k][l]) {
                            if (k + i < 0 || l + j < 0 || k + i > h - 1 || l + j > w - 1) {
                                continue outside;
                            }
                            if (s[k + i].charAt(l + j) == '.' || used[k + i][l + j]) {
                                continue outside;
                            }
                            used[k + i][l + j] = true;
                            flg = true;
                        }
                    }
                }

                if (flg) {
                    out.println("YES");
                    return;
                }
            }
        }

        out.println("NO");
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0