結果
問題 | No.367 ナイトの転身 |
ユーザー | uafr_cs |
提出日時 | 2017-11-01 18:44:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 795 ms / 2,000 ms |
コード長 | 2,705 bytes |
コンパイル時間 | 2,375 ms |
コンパイル使用メモリ | 79,424 KB |
実行使用メモリ | 59,608 KB |
最終ジャッジ日時 | 2024-11-22 14:39:06 |
合計ジャッジ時間 | 10,937 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
41,000 KB |
testcase_01 | AC | 134 ms
41,256 KB |
testcase_02 | AC | 139 ms
41,164 KB |
testcase_03 | AC | 117 ms
40,012 KB |
testcase_04 | AC | 121 ms
40,212 KB |
testcase_05 | AC | 130 ms
41,008 KB |
testcase_06 | AC | 147 ms
41,436 KB |
testcase_07 | AC | 130 ms
41,236 KB |
testcase_08 | AC | 115 ms
40,016 KB |
testcase_09 | AC | 132 ms
41,236 KB |
testcase_10 | AC | 488 ms
55,452 KB |
testcase_11 | AC | 795 ms
59,608 KB |
testcase_12 | AC | 722 ms
54,880 KB |
testcase_13 | AC | 641 ms
53,116 KB |
testcase_14 | AC | 456 ms
50,568 KB |
testcase_15 | AC | 183 ms
42,736 KB |
testcase_16 | AC | 645 ms
53,704 KB |
testcase_17 | AC | 211 ms
44,012 KB |
testcase_18 | AC | 226 ms
44,772 KB |
testcase_19 | AC | 265 ms
47,944 KB |
testcase_20 | AC | 219 ms
44,428 KB |
testcase_21 | AC | 257 ms
49,180 KB |
testcase_22 | AC | 137 ms
41,268 KB |
testcase_23 | AC | 153 ms
41,304 KB |
testcase_24 | AC | 164 ms
42,160 KB |
testcase_25 | AC | 154 ms
41,288 KB |
testcase_26 | AC | 139 ms
41,056 KB |
ソースコード
import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; public class Main { public static long MOD = 1000000007; public static final int INF = Integer.MAX_VALUE / 2 - 1; public static boolean in_range(int x, int y, int W, int H){ return 0 <= x && x < W && 0 <= y && y < H; } public static void main(String[] args) { Scanner sc = new Scanner(System.in); final int H = sc.nextInt(); final int W = sc.nextInt(); int sx = -1, sy = -1, gx = -1, gy = -1; boolean[][] is_red = new boolean[H][W]; for(int i = 0; i < H; i++){ final char[] ins = sc.next().toCharArray(); for(int j = 0; j < W; j++){ if(ins[j] == 'R'){ is_red[i][j] = true; }else if(ins[j] == 'S'){ sx = j; sy = i; }else if(ins[j] == 'G'){ gx = j; gy = i; } } } LinkedList<Integer> queue = new LinkedList<Integer>(); final int KNIGHT = 0, MINB = 1; int[][][] costs = new int[H][W][2]; for(int i = 0; i < H; i++){ for(int j = 0; j < W; j++){ costs[i][j][0] = INF; costs[i][j][1] = INF; } } costs[sy][sx][KNIGHT] = 0; queue.add(sx); queue.add(sy); queue.add(KNIGHT); while(!queue.isEmpty()){ final int x = queue.poll(); final int y = queue.poll(); final int type = queue.poll(); //System.out.println(x + " " + y + " " + (type == KNIGHT ? "N" : "B")); if(type == MINB){ for(int dy = -1; dy <= 1; dy++){ for(int dx = -1; dx <= 1; dx++){ if(dx == 0 && dy == 0){ continue; } if(Math.abs(dx) == 0 || Math.abs(dy) == 0){ continue; } final int nx = x + dx; final int ny = y + dy; if(!in_range(nx, ny, W, H)){ continue; } final int next_type = is_red[ny][nx] ? 1 - type : type; if(costs[ny][nx][next_type] <= costs[y][x][type] + 1){ continue; } costs[ny][nx][next_type] = costs[y][x][type] + 1; queue.add(nx); queue.add(ny); queue.add(next_type); } } }else{ for(int dy = -2; dy <= 2; dy++){ for(int dx = -2; dx <= 2; dx++){ if(Math.abs(dx) == Math.abs(dy)){ continue; } if(Math.min(Math.abs(dx), Math.abs(dy)) == 0){ continue; } final int nx = x + dx; final int ny = y + dy; if(!in_range(nx, ny, W, H)){ continue; } final int next_type = is_red[ny][nx] ? 1 - type : type; if(costs[ny][nx][next_type] <= costs[y][x][type] + 1){ continue; } costs[ny][nx][next_type] = costs[y][x][type] + 1; queue.add(nx); queue.add(ny); queue.add(next_type); } } } } final int min_cost = Math.min(costs[gy][gx][KNIGHT], costs[gy][gx][MINB]); System.out.println(min_cost >= INF ? -1 : min_cost); } }