結果

問題 No.34 砂漠の行商人
ユーザー htensaihtensai
提出日時 2020-06-12 18:32:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 481 ms / 5,000 ms
コード長 1,996 bytes
コンパイル時間 2,563 ms
コンパイル使用メモリ 78,988 KB
実行使用メモリ 66,268 KB
最終ジャッジ日時 2024-06-24 04:02:58
合計ジャッジ時間 7,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,260 KB
testcase_01 AC 56 ms
50,184 KB
testcase_02 AC 67 ms
50,616 KB
testcase_03 AC 62 ms
50,396 KB
testcase_04 AC 108 ms
51,824 KB
testcase_05 AC 111 ms
51,684 KB
testcase_06 AC 121 ms
53,720 KB
testcase_07 AC 124 ms
54,460 KB
testcase_08 AC 148 ms
55,360 KB
testcase_09 AC 136 ms
54,292 KB
testcase_10 AC 481 ms
66,268 KB
testcase_11 AC 125 ms
53,988 KB
testcase_12 AC 102 ms
51,788 KB
testcase_13 AC 195 ms
56,156 KB
testcase_14 AC 198 ms
57,144 KB
testcase_15 AC 102 ms
51,764 KB
testcase_16 AC 104 ms
51,776 KB
testcase_17 AC 119 ms
53,592 KB
testcase_18 AC 68 ms
50,468 KB
testcase_19 AC 155 ms
54,904 KB
testcase_20 AC 181 ms
55,924 KB
testcase_21 AC 95 ms
51,732 KB
testcase_22 AC 150 ms
55,248 KB
testcase_23 AC 119 ms
53,784 KB
testcase_24 AC 175 ms
55,764 KB
testcase_25 AC 126 ms
54,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 6);
		int n = Integer.parseInt(first[0]);
		int v = Integer.parseInt(first[1]);
		int sc = Integer.parseInt(first[2]) - 1;
		int sr = Integer.parseInt(first[3]) - 1;
		int gc = Integer.parseInt(first[4]) - 1;
		int gr = Integer.parseInt(first[5]) - 1;
		int[][] field = new int[n][n];
		int[][] costs = new int[n][n];
		for (int i = 0; i < n; i++) {
		    String[] line = br.readLine().split(" ", n);
		    for (int j = 0; j < n; j++) {
		        field[i][j] = line[j].charAt(0) - '0';
		    }
		    Arrays.fill(costs[i], Integer.MAX_VALUE);
		}
		PriorityQueue<Path> queue = new PriorityQueue<>();
		queue.add(new Path(sr, sc, -field[sr][sc], 0));
		while (queue.size() > 0) {
		    Path p = queue.poll();
		    if (p.row < 0 || p.row >= n || p.col < 0 || p.col >= n) {
		        continue;
		    }
		    p.value += field[p.row][p.col];
		    if (p.value >= v || costs[p.row][p.col] <= p.count) {
		        continue;
		    }
		    costs[p.row][p.col] = p.count;
		    queue.add(new Path(p.row + 1, p.col, p.value, p.count + 1));
		    queue.add(new Path(p.row - 1, p.col, p.value, p.count + 1));
		    queue.add(new Path(p.row, p.col + 1, p.value, p.count + 1));
		    queue.add(new Path(p.row, p.col - 1, p.value, p.count + 1));
		}
		if (costs[gr][gc] == Integer.MAX_VALUE) {
		    System.out.println(-1);
		} else {
		    System.out.println(costs[gr][gc]);
		}
	}
	
	static class Path implements Comparable<Path> {
	    int row;
	    int col;
	    int value;
	    int count;
	    
	    public Path(int row, int col, int value, int count) {
	        this.row = row;
	        this.col = col;
	        this.value = value;
	        this.count = count;
	    }
	    
	    public int compareTo(Path another) {
	        return value - another.value;
	    }
	}
}
0