結果

問題 No.34 砂漠の行商人
ユーザー scachescache
提出日時 2014-12-01 14:07:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 487 ms / 5,000 ms
コード長 1,704 bytes
コンパイル時間 4,659 ms
コンパイル使用メモリ 79,168 KB
実行使用メモリ 54,732 KB
最終ジャッジ日時 2024-06-28 10:05:35
合計ジャッジ時間 11,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,160 KB
testcase_01 AC 131 ms
41,368 KB
testcase_02 AC 173 ms
41,856 KB
testcase_03 AC 153 ms
41,636 KB
testcase_04 AC 237 ms
46,244 KB
testcase_05 AC 245 ms
46,680 KB
testcase_06 AC 211 ms
44,236 KB
testcase_07 AC 284 ms
47,416 KB
testcase_08 AC 295 ms
47,828 KB
testcase_09 AC 357 ms
47,944 KB
testcase_10 AC 285 ms
47,388 KB
testcase_11 AC 289 ms
47,284 KB
testcase_12 AC 219 ms
45,784 KB
testcase_13 AC 487 ms
54,732 KB
testcase_14 AC 461 ms
52,280 KB
testcase_15 AC 201 ms
44,280 KB
testcase_16 AC 235 ms
45,628 KB
testcase_17 AC 221 ms
45,848 KB
testcase_18 AC 189 ms
42,468 KB
testcase_19 AC 377 ms
48,512 KB
testcase_20 AC 417 ms
49,236 KB
testcase_21 AC 247 ms
45,976 KB
testcase_22 AC 249 ms
46,308 KB
testcase_23 AC 212 ms
45,340 KB
testcase_24 AC 402 ms
48,196 KB
testcase_25 AC 243 ms
46,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

public class Main34 {
	public static void main(String[] args) {
		Main34 p = new Main34();
	}

	public Main34(){
		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[][] l = new int[n][n];
		for(int i=0;i<l.length;i++){
			for(int j=0;j<l[i].length;j++)
				l[i][j] = sc.nextInt();
		}
		
		System.out.println(solve(v, sx, sy, gx, gy, l));
	}

	int[] dx = { -1, 0, 1, 0};
	int[] dy = { 0, -1, 0, 1};
	private int solve(int v, int sx, int sy, int gx, int gy, int[][] l) {
		int[][] tl = new int[l.length][l.length];
		for (int i = 0; i < tl.length; i++) {
			Arrays.fill(tl[i], v+1);
		}
		
		LinkedList<Point> queue = new LinkedList<>();
		queue.add(new Point(sx, sy, 0, 0));
				
		while(!queue.isEmpty()){
			Point p = queue.poll();
			
			for(int i=0;i<4;i++){
				int nx = dx[i] + p.x;
				int ny = dy[i] + p.y;
				
				if(nx<0 || l.length<=nx || ny <0 || l.length<=ny)
					continue;
				
				if(nx == gx && ny == gy && v>p.totall+l[ny][nx])
					return p.dist+1;
				
				if(tl[ny][nx] > p.totall+l[ny][nx]){
					tl[ny][nx] = p.totall+l[ny][nx];
					queue.add(new Point(nx, ny, p.totall+l[ny][nx], p.dist+1));
				}
			}
		}
		
		return -1;
		
		
	}

	private class Point{
		int x;
		int y;
		int totall;
		int dist;
		
		public Point(int x, int y, int totall, int dist) {
			this.x = x;
			this.y = y;
			this.totall = totall;
			this.dist = dist;
		}
		
		
	}
	
}
0