結果
問題 | No.157 2つの空洞 |
ユーザー | nCk_cv |
提出日時 | 2016-02-18 11:07:42 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 142 ms / 2,000 ms |
コード長 | 1,972 bytes |
コンパイル時間 | 2,249 ms |
コンパイル使用メモリ | 78,444 KB |
実行使用メモリ | 54,388 KB |
最終ジャッジ日時 | 2024-09-22 11:55:32 |
合計ジャッジ時間 | 5,779 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,328 KB |
testcase_01 | AC | 134 ms
54,024 KB |
testcase_02 | AC | 133 ms
54,272 KB |
testcase_03 | AC | 133 ms
54,276 KB |
testcase_04 | AC | 134 ms
54,196 KB |
testcase_05 | AC | 132 ms
54,168 KB |
testcase_06 | AC | 137 ms
54,140 KB |
testcase_07 | AC | 134 ms
54,376 KB |
testcase_08 | AC | 133 ms
54,024 KB |
testcase_09 | AC | 134 ms
53,884 KB |
testcase_10 | AC | 131 ms
54,044 KB |
testcase_11 | AC | 137 ms
54,388 KB |
testcase_12 | AC | 137 ms
53,848 KB |
testcase_13 | AC | 138 ms
54,176 KB |
testcase_14 | AC | 140 ms
54,292 KB |
testcase_15 | AC | 142 ms
54,180 KB |
testcase_16 | AC | 141 ms
54,300 KB |
testcase_17 | AC | 128 ms
53,180 KB |
testcase_18 | AC | 139 ms
54,044 KB |
testcase_19 | AC | 142 ms
54,220 KB |
ソースコード
import java.util.*; import java.awt.geom.*; import java.io.*; public class Main { static int[] vx = {1,0,-1,0}; static int[] vy = {0,1,0,-1}; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int w = sc.nextInt(); int h = sc.nextInt(); char[][] map = new char[h][]; for(int i = 0; i < h; i++) { map[i] = sc.next().toCharArray(); } int[][] sMap = new int[h][w]; for(int i = 0; i < h; i++) { for(int j = 0; j < w; j++) { sMap[i][j] = 2 << 27; } } IN:for(int i = 0; i < h; i++) { for(int j = 0; j < w; j++) { if(map[i][j] == '.') { dfsA(i,j,0,sMap,map); break IN; } } } for(int i = 0; i < h; i++) { for(int j = 0; j < w; j++) { if(map[i][j] == '#' || sMap[i][j] != 0) continue; bfs(i,j,sMap,map); } } int MIN = 2 << 27; for(int i = 0; i < h; i++) { for(int j = 0; j < w; j++) { if(map[i][j] == '.' && sMap[i][j] != 0) MIN = Math.min(MIN, sMap[i][j]); } } System.out.println(MIN); } static void bfs(int y, int x, int[][] sMap, char[][] map) { ArrayDeque<Data> queue = new ArrayDeque<Data>(); queue.add(new Data(y,x,0)); sMap[y][x] = 0; while(!queue.isEmpty()) { Data tmp = queue.pollFirst(); for(int i = 0; i < 4; i++) { int tx = vx[i] + tmp.x; int ty = vy[i] + tmp.y; if(tx < 0 || ty < 0 || ty >= map.length || tx >= map[ty].length) continue; if(sMap[ty][tx] <= tmp.count) continue; sMap[ty][tx] = tmp.count; queue.add(new Data(ty,tx,tmp.count+1)); } } } static class Data { int y; int x; int count; Data(int a, int b,int c) { y = a; x = b; count = c; } } static void dfsA(int y,int x, int f, int[][] sMap, char[][] map) { sMap[y][x] = f; for(int i = 0; i < 4; i++) { int tx = vx[i] + x; int ty = vy[i] + y; if(tx < 0 || ty < 0 || ty >= map.length || tx >= map[ty].length || map[ty][tx] == '#' || sMap[ty][tx] == 0) continue; dfsA(ty,tx,f,sMap,map); } } }