結果
問題 | No.34 砂漠の行商人 |
ユーザー | Grenache |
提出日時 | 2016-03-15 20:12:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 464 ms / 5,000 ms |
コード長 | 3,360 bytes |
コンパイル時間 | 4,833 ms |
コンパイル使用メモリ | 79,864 KB |
実行使用メモリ | 50,080 KB |
最終ジャッジ日時 | 2024-06-28 10:31:39 |
合計ジャッジ時間 | 9,642 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,004 KB |
testcase_01 | AC | 54 ms
37,080 KB |
testcase_02 | AC | 59 ms
37,200 KB |
testcase_03 | AC | 55 ms
36,660 KB |
testcase_04 | AC | 119 ms
42,056 KB |
testcase_05 | AC | 147 ms
44,360 KB |
testcase_06 | AC | 87 ms
38,528 KB |
testcase_07 | AC | 175 ms
45,552 KB |
testcase_08 | AC | 207 ms
46,496 KB |
testcase_09 | AC | 265 ms
47,060 KB |
testcase_10 | AC | 162 ms
43,972 KB |
testcase_11 | AC | 229 ms
46,456 KB |
testcase_12 | AC | 100 ms
39,576 KB |
testcase_13 | AC | 464 ms
50,080 KB |
testcase_14 | AC | 407 ms
49,276 KB |
testcase_15 | AC | 69 ms
38,388 KB |
testcase_16 | AC | 152 ms
44,744 KB |
testcase_17 | AC | 76 ms
38,692 KB |
testcase_18 | AC | 82 ms
38,256 KB |
testcase_19 | AC | 285 ms
47,340 KB |
testcase_20 | AC | 423 ms
47,524 KB |
testcase_21 | AC | 104 ms
39,540 KB |
testcase_22 | AC | 112 ms
39,700 KB |
testcase_23 | AC | 85 ms
38,284 KB |
testcase_24 | AC | 381 ms
47,504 KB |
testcase_25 | AC | 143 ms
44,288 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.PrintStream; import java.io.PrintWriter; import java.util.ArrayDeque; import java.util.Arrays; import java.util.Iterator; import java.util.Queue; public class Main_yukicoder34 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); Printer pr = new Printer(System.out); int[] dx = {1, -1, 0, 0}; int[] dy = {0, 0, 1, -1}; int n = sc.nextInt(); int v = sc.nextInt(); int sx = sc.nextInt() - 1; int sy = sc.nextInt() - 1; int gx = sc.nextInt() - 1; int gy = sc.nextInt() - 1; int[][] l = new int[n][n]; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { l[i][j] = sc.nextInt(); } } int[][] vv = new int[n][n]; Queue<Integer> qx = new ArrayDeque<>(); Queue<Integer> qy = new ArrayDeque<>(); Queue<Integer> qv = new ArrayDeque<>(); qx.add(sx); qy.add(sy); qv.add(v); vv[sy][sx] = v; for (int cnt = 0; true; cnt++) { Queue<Integer> qxtmp = new ArrayDeque<>(); Queue<Integer> qytmp = new ArrayDeque<>(); Queue<Integer> qvtmp = new ArrayDeque<>(); while (!qx.isEmpty()) { int x = qx.remove(); int y = qy.remove(); int vtmp = qv.remove(); if (x == gx && y == gy && vtmp > 0) { pr.println(cnt); pr.close(); sc.close(); return; } for (int i = 0; i < dx.length; i++) { int nx = x + dx[i]; int ny = y + dy[i]; if (nx >= 0 && nx < n && ny >= 0 && ny < n) { int nv = vtmp - l[ny][nx]; if (nv > 0 && nv > vv[ny][nx]) { qxtmp.add(nx); qytmp.add(ny); qvtmp.add(nv); vv[ny][nx] = nv; } } } } if (!qxtmp.isEmpty()) { // pr.println(qxtmp.size()); qx = qxtmp; qy = qytmp; qv = qvtmp; } else { break; } } pr.println(-1); pr.close(); sc.close(); } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }