結果

問題 No.402 最も海から遠い場所
ユーザー tentententen
提出日時 2021-01-26 08:30:45
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 3,036 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 78,476 KB
実行使用メモリ 98,080 KB
最終ジャッジ日時 2024-06-23 07:29:18
合計ジャッジ時間 12,178 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,404 KB
testcase_01 AC 50 ms
36,552 KB
testcase_02 AC 72 ms
38,436 KB
testcase_03 AC 50 ms
36,508 KB
testcase_04 AC 49 ms
36,676 KB
testcase_05 AC 51 ms
36,308 KB
testcase_06 AC 49 ms
36,268 KB
testcase_07 AC 51 ms
36,956 KB
testcase_08 AC 51 ms
36,596 KB
testcase_09 AC 51 ms
36,996 KB
testcase_10 AC 51 ms
37,108 KB
testcase_11 AC 63 ms
37,172 KB
testcase_12 AC 55 ms
36,952 KB
testcase_13 AC 187 ms
48,428 KB
testcase_14 AC 125 ms
43,732 KB
testcase_15 AC 643 ms
90,736 KB
testcase_16 AC 767 ms
98,080 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int h = Integer.parseInt(first[0]);
        int w = Integer.parseInt(first[1]);
        int w2 = w + 2;
        HashSet<Integer> current = new HashSet<>();
        for (int i = 0; i < w2; i++) {
            current.add(i);
            current.add((h + 1) * w2 + i);
        }
        char[][] field = new char[h][];
        for (int i = 0; i < h; i++) {
            field[i] = br.readLine().toCharArray();
            current.add((i + 1) * w2);
            current.add((i + 1) * w2 + w + 1);
            for (int j = 0; j < w; j++) {
                if (field[i][j] == '.') {
                    current.add((i + 1) * w2 + j + 1);
                }
            }
        }
        HashSet<Integer> used = new HashSet<>();
        used.addAll(current);
        int idx = 0;
        while (used.size() < (h + 2) * (w + 2)) {
            HashSet<Integer> next = new HashSet<>();
            for (int x : current) {
                if (x % w2 > 0) {
                    int tmp = x - 1;
                    if (!used.contains(tmp)) {
                        next.add(tmp);
                    }
                    if (x / w2 > 0) {
                        int tmp2 = tmp - w2;
                        if (!used.contains(tmp2)) {
                            next.add(tmp2);
                        }
                    }
                    if (x / w2 < h + 1) {
                        int tmp2 = tmp + w2;
                        if (!used.contains(tmp2)) {
                            next.add(tmp2);
                        }
                    }
                }
                if (x % w2 < w + 1) {
                    int tmp = x + 1;
                    if (!used.contains(tmp)) {
                        next.add(tmp);
                    }
                    if (x / w2 > 0) {
                        int tmp2 = tmp - w2;
                        if (!used.contains(tmp2)) {
                            next.add(tmp2);
                        }
                    }
                    if (x / w2 < h + 1) {
                        int tmp2 = tmp + w2;
                        if (!used.contains(tmp2)) {
                            next.add(tmp2);
                        }
                    }
               }
                if (x / w2 > 0) {
                    int tmp = x - w2;
                    if (!used.contains(tmp)) {
                        next.add(tmp);
                    }
                }
                if (x / w2 < h + 1) {
                    int tmp = x + w2;
                    if (!used.contains(tmp)) {
                        next.add(tmp);
                    }
                }
            }
            idx++;
            used.addAll(next);
            current = next;
        }
        System.out.println(idx);
    }
    
}
0