結果

問題 No.34 砂漠の行商人
ユーザー htensaihtensai
提出日時 2020-05-11 16:54:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,958 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 79,604 KB
実行使用メモリ 49,612 KB
最終ジャッジ日時 2024-07-18 13:44:12
合計ジャッジ時間 9,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,328 KB
testcase_01 AC 107 ms
40,220 KB
testcase_02 AC 161 ms
42,060 KB
testcase_03 AC 143 ms
42,104 KB
testcase_04 AC 234 ms
46,036 KB
testcase_05 AC 235 ms
45,992 KB
testcase_06 WA -
testcase_07 AC 286 ms
47,112 KB
testcase_08 AC 300 ms
47,440 KB
testcase_09 AC 263 ms
46,160 KB
testcase_10 AC 492 ms
49,612 KB
testcase_11 AC 263 ms
47,776 KB
testcase_12 AC 211 ms
44,740 KB
testcase_13 AC 375 ms
47,780 KB
testcase_14 AC 360 ms
46,936 KB
testcase_15 AC 228 ms
45,484 KB
testcase_16 AC 224 ms
45,524 KB
testcase_17 AC 250 ms
47,268 KB
testcase_18 AC 166 ms
42,416 KB
testcase_19 AC 305 ms
46,252 KB
testcase_20 AC 320 ms
47,552 KB
testcase_21 AC 228 ms
46,312 KB
testcase_22 AC 300 ms
47,648 KB
testcase_23 AC 246 ms
46,832 KB
testcase_24 AC 325 ms
46,696 KB
testcase_25 AC 279 ms
47,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 sx = sc.nextInt() - 1;
		int sy = sc.nextInt() - 1;
		int gx = sc.nextInt() - 1;
		int gy = sc.nextInt() - 1;
		int[][] costs = new int[n][n];
		int[][] counts = new int[n][n];
		ArrayList<ArrayList<TreeMap<Integer, Integer>>> values = new ArrayList<>();
		for (int i = 0; i < n; i++) {
		    Arrays.fill(counts[i], Integer.MAX_VALUE);
		    for (int j = 0; j < n; j++) {
		        costs[i][j] = sc.nextInt();
		    }
		}
		PriorityQueue<Path> queue = new PriorityQueue<>();
		queue.add(new Path(sx, sy, 0, v));
		while (queue.size() > 0) {
		    Path p = queue.poll();
		    p.value -= costs[p.y][p.x];
		    if (p.value <= 0) {
		        continue;
		    }
		    if (counts[p.y][p.x] <= p.count) {
		        continue;
		    }
		    counts[p.y][p.x] = p.count;
		    if (p.x > 0) {
		        queue.add(new Path(p.x - 1, p.y, p.count + 1, p.value));
		    }
		    if (p.x < n - 1) {
		        queue.add(new Path(p.x + 1, p.y, p.count + 1, p.value));
		    }
		    if (p.y > 0) {
		        queue.add(new Path(p.x, p.y - 1, p.count + 1, p.value));
		    }
		    if (p.y < n - 1) {
		        queue.add(new Path(p.x, p.y + 1, p.count + 1, p.value));
		    }
		}
		if (counts[gy][gx] == Integer.MAX_VALUE) {
		    System.out.println(-1);
		} else {
		    System.out.println(counts[gy][gx]);
		}
	}
	
	static class Path implements Comparable<Path> {
	    int x;
	    int y;
	    int count;
	    int value;
	    
	    public Path(int x, int y, int count, int value) {
	        this.x = x;
	        this.y = y;
	        this.count = count;
	        this.value = value;
	    }
	    
	    public int compareTo(Path another) {
	        if (value == another.value) {
	            return count - another.count;
	        } else {
	            return another.value - value;
	        }
	    }
	}
}
0