結果
問題 | No.157 2つの空洞 |
ユーザー | nCk_cv |
提出日時 | 2016-02-18 11:06:10 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,972 bytes |
コンパイル時間 | 3,561 ms |
コンパイル使用メモリ | 78,352 KB |
実行使用メモリ | 54,488 KB |
最終ジャッジ日時 | 2024-09-22 11:55:26 |
合計ジャッジ時間 | 5,871 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
54,288 KB |
testcase_01 | AC | 131 ms
54,312 KB |
testcase_02 | AC | 131 ms
54,220 KB |
testcase_03 | WA | - |
testcase_04 | AC | 118 ms
53,092 KB |
testcase_05 | AC | 119 ms
53,036 KB |
testcase_06 | AC | 133 ms
54,320 KB |
testcase_07 | AC | 132 ms
54,036 KB |
testcase_08 | AC | 130 ms
54,404 KB |
testcase_09 | AC | 119 ms
52,884 KB |
testcase_10 | AC | 132 ms
54,048 KB |
testcase_11 | AC | 121 ms
53,028 KB |
testcase_12 | AC | 135 ms
54,088 KB |
testcase_13 | AC | 136 ms
54,036 KB |
testcase_14 | AC | 138 ms
54,136 KB |
testcase_15 | WA | - |
testcase_16 | AC | 140 ms
54,000 KB |
testcase_17 | AC | 144 ms
54,488 KB |
testcase_18 | WA | - |
testcase_19 | AC | 138 ms
54,248 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); } } }