結果

問題 No.157 2つの空洞
ユーザー tsunabittsunabit
提出日時 2020-03-08 23:24:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,255 bytes
コンパイル時間 4,758 ms
コンパイル使用メモリ 79,388 KB
実行使用メモリ 41,436 KB
最終ジャッジ日時 2024-11-07 20:16:44
合計ジャッジ時間 7,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,168 KB
testcase_01 AC 129 ms
41,380 KB
testcase_02 AC 130 ms
41,200 KB
testcase_03 AC 128 ms
40,928 KB
testcase_04 AC 129 ms
41,436 KB
testcase_05 AC 113 ms
40,228 KB
testcase_06 AC 128 ms
41,036 KB
testcase_07 AC 113 ms
40,072 KB
testcase_08 AC 126 ms
41,152 KB
testcase_09 AC 120 ms
40,616 KB
testcase_10 AC 117 ms
40,408 KB
testcase_11 AC 127 ms
41,320 KB
testcase_12 AC 114 ms
40,156 KB
testcase_13 AC 127 ms
41,352 KB
testcase_14 AC 133 ms
41,356 KB
testcase_15 AC 139 ms
41,116 KB
testcase_16 AC 135 ms
41,232 KB
testcase_17 AC 131 ms
41,120 KB
testcase_18 AC 126 ms
41,204 KB
testcase_19 AC 129 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No157 {
	public static int W;
	public static int H;
	public static int ans = 999;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		W = sc.nextInt();
		H = sc.nextInt();
		char[][] c = new char[H][W];
		
		String t = "";
		for(int i = 0; i < H; i++) {
			t += sc.next();
		}
		
		for(int i = 0; i < H; i++) {
			for(int j = 0; j < W; j++) {
				c[i][j] = t.charAt(W*i+j);
			}
		}
		
		loop: for(int i = 0; i < H; i++) {
			for(int j = 0; j < W; j++) {
				if(c[i][j] == '.') {
					dfs1(c, i, j);
					break loop;
				}
			}
		}
		for(int i = 0; i < H; i++) {
			for(int j = 0; j < W; j++) {
				if(c[i][j] == '1') {
					for(int k = 0; k < H; k++) {
						for(int l = 0; l < W; l++) {
							if(c[k][l] == '.') {
								ans = Math.min(ans, Math.abs(i-k)+Math.abs(j-l)-1);
							}
						}
					}
				}
			}
		}
		System.out.println(ans);
	}
	
	public static void dfs1(char[][] c, int h, int w) {
		if(c[h][w] == '.') {
			c[h][w] = '1';
		}
		if(h > 0 && c[h-1][w] == '.') dfs1(c, h-1, w);
		if(h < H-1 && c[h+1][w] == '.') dfs1(c, h+1, w);
		if(w < W-1 && c[h][w+1] == '.') dfs1(c, h, w+1);
		if(w > 0 && c[h][w-1] == '.') dfs1(c, h, w-1);
	}
}
0