結果
問題 | No.20 砂漠のオアシス |
ユーザー | htensai |
提出日時 | 2020-05-14 17:41:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 530 ms / 5,000 ms |
コード長 | 2,778 bytes |
コンパイル時間 | 2,413 ms |
コンパイル使用メモリ | 79,520 KB |
実行使用メモリ | 49,236 KB |
最終ジャッジ日時 | 2024-09-15 12:16:48 |
合計ジャッジ時間 | 9,415 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,088 KB |
testcase_01 | AC | 136 ms
40,960 KB |
testcase_02 | AC | 139 ms
41,192 KB |
testcase_03 | AC | 209 ms
44,004 KB |
testcase_04 | AC | 215 ms
44,108 KB |
testcase_05 | AC | 455 ms
49,236 KB |
testcase_06 | AC | 516 ms
48,360 KB |
testcase_07 | AC | 495 ms
48,256 KB |
testcase_08 | AC | 426 ms
46,648 KB |
testcase_09 | AC | 530 ms
48,248 KB |
testcase_10 | AC | 129 ms
41,188 KB |
testcase_11 | AC | 130 ms
40,844 KB |
testcase_12 | AC | 211 ms
43,524 KB |
testcase_13 | AC | 213 ms
43,896 KB |
testcase_14 | AC | 236 ms
45,840 KB |
testcase_15 | AC | 223 ms
44,476 KB |
testcase_16 | AC | 304 ms
47,560 KB |
testcase_17 | AC | 283 ms
46,960 KB |
testcase_18 | AC | 295 ms
47,220 KB |
testcase_19 | AC | 305 ms
47,584 KB |
testcase_20 | AC | 195 ms
42,988 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int v = sc.nextInt(); int ox = sc.nextInt() - 1; int oy = sc.nextInt() - 1; int[][] field = new int[n][n]; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { field[i][j] = sc.nextInt(); } } int[][] costs = new int[n][n]; for (int i = 0; i < n; i++) { Arrays.fill(costs[i], Integer.MAX_VALUE); } PriorityQueue<Path> queue = new PriorityQueue<>(); queue.add(new Path(0, 0, -field[0][0])); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.row][p.col] <= p.value + field[p.row][p.col]) { continue; } costs[p.row][p.col] = p.value + field[p.row][p.col]; if (p.row > 0) { queue.add(new Path(p.row - 1, p.col, p.value + field[p.row][p.col])); } if (p.row < n - 1) { queue.add(new Path(p.row + 1, p.col, p.value + field[p.row][p.col])); } if (p.col > 0) { queue.add(new Path(p.row, p.col - 1, p.value + field[p.row][p.col])); } if (p.col < n - 1) { queue.add(new Path(p.row, p.col + 1, p.value + field[p.row][p.col])); } } if (costs[n - 1][n - 1] < v) { System.out.println("YES"); return; } if (ox < 0 && oy < 0) { System.out.println("NO"); return; } if (costs[oy][ox] >= v) { System.out.println("NO"); return; } v -= costs[oy][ox]; v *= 2; for (int i = 0; i < n; i++) { Arrays.fill(costs[i], Integer.MAX_VALUE); } queue.add(new Path(oy, ox, -field[oy][ox])); while (queue.size() > 0) { Path p = queue.poll(); if (costs[p.row][p.col] <= p.value + field[p.row][p.col]) { continue; } costs[p.row][p.col] = p.value + field[p.row][p.col]; if (p.row > 0) { queue.add(new Path(p.row - 1, p.col, p.value + field[p.row][p.col])); } if (p.row < n - 1) { queue.add(new Path(p.row + 1, p.col, p.value + field[p.row][p.col])); } if (p.col > 0) { queue.add(new Path(p.row, p.col - 1, p.value + field[p.row][p.col])); } if (p.col < n - 1) { queue.add(new Path(p.row, p.col + 1, p.value + field[p.row][p.col])); } } if (costs[n - 1][n - 1] < v) { System.out.println("YES"); } else { System.out.println("NO"); } } static class Path implements Comparable<Path> { int row; int col; int value; public Path(int row, int col, int value) { this.row = row; this.col = col; this.value = value; } public int compareTo(Path another) { return value - another.value; } } }