結果
問題 | No.402 最も海から遠い場所 |
ユーザー | tenten |
提出日時 | 2021-01-26 08:06:06 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,083 bytes |
コンパイル時間 | 2,494 ms |
コンパイル使用メモリ | 78,616 KB |
実行使用メモリ | 104,176 KB |
最終ジャッジ日時 | 2024-06-23 07:12:31 |
合計ジャッジ時間 | 13,227 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
36,968 KB |
testcase_01 | AC | 54 ms
37,384 KB |
testcase_02 | AC | 86 ms
38,896 KB |
testcase_03 | AC | 53 ms
36,940 KB |
testcase_04 | AC | 53 ms
37,212 KB |
testcase_05 | AC | 53 ms
37,268 KB |
testcase_06 | AC | 52 ms
37,488 KB |
testcase_07 | AC | 52 ms
37,472 KB |
testcase_08 | AC | 52 ms
37,456 KB |
testcase_09 | AC | 54 ms
37,472 KB |
testcase_10 | AC | 54 ms
37,300 KB |
testcase_11 | AC | 67 ms
37,776 KB |
testcase_12 | AC | 57 ms
37,536 KB |
testcase_13 | AC | 196 ms
50,436 KB |
testcase_14 | AC | 124 ms
43,760 KB |
testcase_15 | AC | 675 ms
91,704 KB |
testcase_16 | AC | 822 ms
104,176 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
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; int[][] costs = new int[h + 2][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); } }