結果
問題 | No.157 2つの空洞 |
ユーザー | tenten |
提出日時 | 2020-10-14 13:12:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 131 ms / 2,000 ms |
コード長 | 1,686 bytes |
コンパイル時間 | 2,467 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 41,564 KB |
最終ジャッジ日時 | 2024-07-20 19:05:51 |
合計ジャッジ時間 | 5,419 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
41,564 KB |
testcase_01 | AC | 111 ms
41,100 KB |
testcase_02 | AC | 101 ms
40,028 KB |
testcase_03 | AC | 102 ms
40,288 KB |
testcase_04 | AC | 113 ms
41,316 KB |
testcase_05 | AC | 101 ms
40,256 KB |
testcase_06 | AC | 105 ms
40,316 KB |
testcase_07 | AC | 112 ms
41,328 KB |
testcase_08 | AC | 114 ms
41,556 KB |
testcase_09 | AC | 115 ms
41,356 KB |
testcase_10 | AC | 103 ms
39,916 KB |
testcase_11 | AC | 120 ms
41,424 KB |
testcase_12 | AC | 102 ms
40,288 KB |
testcase_13 | AC | 118 ms
41,148 KB |
testcase_14 | AC | 131 ms
41,292 KB |
testcase_15 | AC | 116 ms
40,008 KB |
testcase_16 | AC | 110 ms
40,376 KB |
testcase_17 | AC | 124 ms
40,172 KB |
testcase_18 | AC | 120 ms
41,320 KB |
testcase_19 | AC | 114 ms
41,068 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int w = sc.nextInt(); int h = sc.nextInt(); char[][] field = new char[h][]; for (int i = 0; i < h; i++) { field[i] = sc.next().toCharArray(); } HashSet<Integer> lefts = new HashSet<>(); HashSet<Integer> rights = new HashSet<>(); boolean used = false; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { if (field[i][j] == '.') { HashSet<Integer> tmp; if (used) { tmp = rights; } else { tmp = lefts; used = true; } PriorityQueue<Integer> queue = new PriorityQueue<>(); queue.add(i * w + j); while (queue.size() > 0) { int x = queue.poll(); if (field[x / w][x % w] == '#') { continue; } field[x / w][x % w] = '#'; queue.add(x + 1); queue.add(x - 1); queue.add(x + w); queue.add(x - w); tmp.add(x); } } } } int min = Integer.MAX_VALUE; for (int x : lefts) { for (int y : rights) { min = Math.min(min, getDist(x, y, w)); } } System.out.println(min); } static int getDist(int x, int y, int width) { return Math.abs(x / width - y / width) + Math.abs(x % width - y % width) - 1; } }