結果

問題 No.402 最も海から遠い場所
ユーザー kano_townkano_town
提出日時 2016-07-23 00:10:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,229 bytes
コンパイル時間 3,995 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 153,344 KB
最終ジャッジ日時 2024-11-06 13:53:04
合計ジャッジ時間 17,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
60,676 KB
testcase_01 AC 135 ms
54,036 KB
testcase_02 AC 138 ms
53,756 KB
testcase_03 AC 133 ms
53,908 KB
testcase_04 AC 134 ms
54,172 KB
testcase_05 AC 131 ms
54,336 KB
testcase_06 AC 132 ms
53,940 KB
testcase_07 AC 131 ms
53,880 KB
testcase_08 AC 133 ms
54,068 KB
testcase_09 AC 133 ms
54,040 KB
testcase_10 AC 135 ms
54,128 KB
testcase_11 AC 139 ms
53,720 KB
testcase_12 AC 136 ms
53,808 KB
testcase_13 AC 188 ms
54,116 KB
testcase_14 AC 186 ms
54,920 KB
testcase_15 AC 262 ms
57,352 KB
testcase_16 AC 357 ms
60,692 KB
testcase_17 AC 723 ms
93,488 KB
testcase_18 TLE -
testcase_19 AC 934 ms
146,516 KB
testcase_20 TLE -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder402 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = sc.nextInt() + 2, w = sc.nextInt() + 2;
        String[] s = new String[h];
        int[] map = new int[h * w];
        int[] map_buf = new int[h * w];
        int[] dx = {-1, 0, 1, -1, 1, -1, 0, 1};
        int[] dy = {-1, -1, -1, 0, 0, 1, 1, 1};
        for (int i = 0; i < h; i++) {
            if (i == 0 || i == h - 1) {
                for (int x = 0; x < w; x++) {
                    map[i * w + x] = 0;
                    map_buf[i * w + x] = 0;
                }
            }
            if (i == 0 || i == h - 1) continue;
            s[i] = sc.next();
            for (int x = 0; x < w; x++) {
                if (x == 0 || x == w - 1) {
                    map[i * w + x] = 0;
                    map_buf[i * w + x] = 0;
                } else if (s[i].charAt(x - 1) == '.') {
                    map[i * w + x] = 0;
                    map_buf[i * w + x] = 0;
                } else {
                    map[i * w + x] = 1;
                    map_buf[i * w + x] = 1;
                }
            }
        }

        int cnt, k;
        for (k = 1; k < 500; k++) {
            cnt = 0;
            for (int y = k; y < h - k; y++) {
                for (int x = k; x < w - k; x++) {
                    if (map[y * w + x] == 1) {
                        for (int p = 0; p < 8; p++) {
                            if (map[(y + dy[p]) * w + (x + dx[p])] == 0) {
                                map_buf[y * w + x] = 0;
                                cnt++;
                                break;
                            }
                        }
                    }
                }
            }
            for (int y = k; y < h - k; y++) {
                for (int x = k; x < w - k; x++) {
/*                    if (map[y * w + x] == 1)
                        System.out.print("#");
                    else
                        System.out.print(".");
        */
                    map[y * w + x] = map_buf[y * w + x];
                }
            }
            if (cnt == 0) break;
        }
        System.out.println(k-1);
    }
}
0