結果
問題 | No.367 ナイトの転身 |
ユーザー | htensai |
提出日時 | 2020-05-12 10:49:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 982 ms / 2,000 ms |
コード長 | 2,914 bytes |
コンパイル時間 | 2,548 ms |
コンパイル使用メモリ | 79,536 KB |
実行使用メモリ | 71,488 KB |
最終ジャッジ日時 | 2024-09-13 04:04:16 |
合計ジャッジ時間 | 12,021 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,140 KB |
testcase_01 | AC | 131 ms
54,024 KB |
testcase_02 | AC | 131 ms
53,988 KB |
testcase_03 | AC | 133 ms
53,984 KB |
testcase_04 | AC | 132 ms
54,172 KB |
testcase_05 | AC | 131 ms
54,208 KB |
testcase_06 | AC | 167 ms
54,492 KB |
testcase_07 | AC | 131 ms
53,932 KB |
testcase_08 | AC | 132 ms
56,068 KB |
testcase_09 | AC | 132 ms
54,224 KB |
testcase_10 | AC | 786 ms
66,552 KB |
testcase_11 | AC | 982 ms
71,488 KB |
testcase_12 | AC | 665 ms
69,260 KB |
testcase_13 | AC | 686 ms
67,252 KB |
testcase_14 | AC | 680 ms
65,000 KB |
testcase_15 | AC | 185 ms
56,224 KB |
testcase_16 | AC | 560 ms
67,260 KB |
testcase_17 | AC | 244 ms
59,004 KB |
testcase_18 | AC | 257 ms
59,668 KB |
testcase_19 | AC | 311 ms
62,048 KB |
testcase_20 | AC | 251 ms
59,304 KB |
testcase_21 | AC | 306 ms
62,024 KB |
testcase_22 | AC | 138 ms
54,120 KB |
testcase_23 | AC | 163 ms
54,152 KB |
testcase_24 | AC | 178 ms
54,472 KB |
testcase_25 | AC | 163 ms
54,216 KB |
testcase_26 | AC | 147 ms
54,264 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int h = sc.nextInt(); int w = sc.nextInt(); char[][] field = new char[h][]; int sr = 0; int sx = 0; int gr = 0; int gc = 0; int[][] kCosts = new int[h][w]; int[][] bCosts = new int[h][w]; for (int i = 0; i < h; i++) { field[i] = sc.next().toCharArray(); Arrays.fill(kCosts[i], Integer.MAX_VALUE); Arrays.fill(bCosts[i], Integer.MAX_VALUE); for (int j = 0; j < w; j++) { if (field[i][j] == 'S') { sr = i; sx = j; } else if (field[i][j] == 'G') { gr = i; gc = j; } } } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(sr, sx, 0, true)); while (queue.size() > 0) { Path p = queue.poll(); if (p.row < 0 || p.row >= h || p.col < 0 || p.col >= w) { continue; } if (p.isKnight) { if (kCosts[p.row][p.col] <= p.value) { continue; } kCosts[p.row][p.col] = p.value; } else { if (bCosts[p.row][p.col] <= p.value) { continue; } bCosts[p.row][p.col] = p.value; } if (field[p.row][p.col] == 'R') { p.isKnight ^= true; } if (p.isKnight) { queue.add(new Path(p.row - 2, p.col - 1, p.value + 1, p.isKnight)); queue.add(new Path(p.row - 2, p.col + 1, p.value + 1, p.isKnight)); queue.add(new Path(p.row + 2, p.col - 1, p.value + 1, p.isKnight)); queue.add(new Path(p.row + 2, p.col + 1, p.value + 1, p.isKnight)); queue.add(new Path(p.row - 1, p.col - 2, p.value + 1, p.isKnight)); queue.add(new Path(p.row - 1, p.col + 2, p.value + 1, p.isKnight)); queue.add(new Path(p.row + 1, p.col - 2, p.value + 1, p.isKnight)); queue.add(new Path(p.row + 1, p.col + 2, p.value + 1, p.isKnight)); } else { queue.add(new Path(p.row - 1, p.col - 1, p.value + 1, p.isKnight)); queue.add(new Path(p.row - 1, p.col + 1, p.value + 1, p.isKnight)); queue.add(new Path(p.row + 1, p.col - 1, p.value + 1, p.isKnight)); queue.add(new Path(p.row + 1, p.col + 1, p.value + 1, p.isKnight)); } } int ans = Math.min(kCosts[gr][gc], bCosts[gr][gc]); if (ans == Integer.MAX_VALUE) { System.out.println(-1); } else { System.out.println(ans); } } static class Path implements Comparable<Path> { int row; int col; int value; boolean isKnight; public Path(int row, int col, int value, boolean isKnight) { this.row = row; this.col = col; this.value = value; this.isKnight = isKnight; } public int compareTo(Path another) { return value - another.value; } } }