結果
問題 | No.157 2つの空洞 |
ユーザー | uafr_cs |
提出日時 | 2015-06-17 04:09:30 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 1,885 bytes |
コンパイル時間 | 2,492 ms |
コンパイル使用メモリ | 79,396 KB |
実行使用メモリ | 54,300 KB |
最終ジャッジ日時 | 2024-07-07 03:28:52 |
合計ジャッジ時間 | 5,529 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
53,988 KB |
testcase_01 | AC | 107 ms
54,116 KB |
testcase_02 | AC | 109 ms
54,116 KB |
testcase_03 | AC | 122 ms
53,976 KB |
testcase_04 | AC | 98 ms
54,248 KB |
testcase_05 | AC | 109 ms
53,056 KB |
testcase_06 | AC | 124 ms
54,288 KB |
testcase_07 | AC | 104 ms
52,928 KB |
testcase_08 | AC | 115 ms
52,760 KB |
testcase_09 | AC | 126 ms
54,076 KB |
testcase_10 | AC | 122 ms
54,164 KB |
testcase_11 | AC | 124 ms
54,164 KB |
testcase_12 | AC | 130 ms
54,084 KB |
testcase_13 | AC | 128 ms
54,036 KB |
testcase_14 | AC | 121 ms
54,204 KB |
testcase_15 | AC | 107 ms
53,104 KB |
testcase_16 | AC | 116 ms
54,076 KB |
testcase_17 | AC | 120 ms
54,300 KB |
testcase_18 | AC | 126 ms
54,112 KB |
testcase_19 | AC | 116 ms
53,580 KB |
ソースコード
import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.Scanner; import java.util.TreeSet; public class Main { public static final int INF = Integer.MAX_VALUE / 2 - 1; public static final int[] vs = {1, 0, -1, 0}; public static void main(String[] args){ Scanner sc = new Scanner(System.in); final int W = sc.nextInt(); final int H = sc.nextInt(); boolean[][] is_wall = new boolean[H][W]; for(int i = 0; i < H; i++){ char[] inputs = sc.next().toCharArray(); for(int j = 0; j < W; j++){ is_wall[i][j] = inputs[j] == '#'; } } int sx = -1, sy = -1; LOOP: for(int i = 0; i < H; i++){ for(int j = 0; j < W; j++){ if(!is_wall[i][j]){ sx = j; sy = i; break LOOP; } } } int[][] dists = new int[H][W]; for(int i = 0; i < H; i++){ for(int j = 0; j < W; j++){ dists[i][j] = INF; } } dists[sy][sx] = 0; LinkedList<Integer> y_queue = new LinkedList<Integer>(); LinkedList<Integer> x_queue = new LinkedList<Integer>(); y_queue.add(sy); x_queue.add(sx); while(!y_queue.isEmpty()){ final int y = y_queue.poll(); final int x = x_queue.poll(); if(dists[y][x] != 0 && !is_wall[y][x]){ System.out.println(dists[y][x]); break; } for(int v = 0; v < vs.length; v++){ final int nx = x + vs[v]; final int ny = y + vs[(v + 1) % vs.length]; if(nx < 0 || nx >= W || ny < 0 || ny >= H){ continue; } if(is_wall[ny][nx] && dists[ny][nx] > dists[y][x] + 1){ dists[ny][nx] = Math.min(dists[ny][nx], dists[y][x] + 1); y_queue.addLast(ny); x_queue.addLast(nx); } if(!is_wall[ny][nx] && dists[ny][nx] > dists[y][x]){ dists[ny][nx] = Math.min(dists[ny][nx], dists[y][x]); y_queue.addFirst(ny); x_queue.addFirst(nx); } } } } }