結果

問題 No.157 2つの空洞
ユーザー htensaihtensai
提出日時 2020-02-14 08:34:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 2,698 ms
コンパイル使用メモリ 79,660 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-10-06 07:36:55
合計ジャッジ時間 5,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,324 KB
testcase_01 AC 124 ms
41,400 KB
testcase_02 AC 123 ms
41,372 KB
testcase_03 AC 119 ms
40,884 KB
testcase_04 AC 116 ms
40,144 KB
testcase_05 AC 112 ms
41,180 KB
testcase_06 AC 115 ms
40,064 KB
testcase_07 AC 126 ms
41,204 KB
testcase_08 AC 119 ms
41,332 KB
testcase_09 AC 106 ms
41,660 KB
testcase_10 AC 120 ms
40,996 KB
testcase_11 AC 104 ms
40,000 KB
testcase_12 AC 123 ms
41,036 KB
testcase_13 AC 119 ms
39,900 KB
testcase_14 AC 132 ms
41,480 KB
testcase_15 AC 132 ms
41,420 KB
testcase_16 AC 118 ms
40,288 KB
testcase_17 AC 127 ms
41,424 KB
testcase_18 AC 110 ms
41,548 KB
testcase_19 AC 120 ms
40,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
		}
		ArrayDeque<Integer> deq = new ArrayDeque<>();
		for (int i = 1; i < h - 1 && deq.size() == 0; i++) {
		    for (int j = 1; j < w - 1 && deq.size() == 0; j++) {
		        if (field[i][j] == '.') {
		            deq.add(i * w + j);
		        }
		    }
		}
		HashSet<Integer> holeA = new HashSet<>();
		while (deq.size() > 0) {
		    int x = deq.poll();
		    if (field[x / w][x % w] == '.' && !holeA.contains(x)) {
		        holeA.add(x);
		        deq.add(x - 1);
		        deq.add(x + 1);
		        deq.add(x - w);
		        deq.add(x + w);
		    }
		}
		int min = Integer.MAX_VALUE;
		for (int i = 1; i < h - 1; i++) {
		    for (int j = 1; j < w - 1; j++) {
		        if (field[i][j] == '.' && !holeA.contains(i * w + j)) {
		            for (int x : holeA) {
		                min = Math.min(min, Math.abs(x / w - i) + Math.abs(x % w - j));
		            }
		        }
		    }
		}
		System.out.println(min - 1);
   }
}
0