結果

問題 No.34 砂漠の行商人
ユーザー kou6839kou6839
提出日時 2015-02-20 16:22:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,757 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 79,384 KB
実行使用メモリ 59,760 KB
最終ジャッジ日時 2024-06-23 21:26:51
合計ジャッジ時間 9,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,204 KB
testcase_01 WA -
testcase_02 AC 171 ms
54,280 KB
testcase_03 AC 155 ms
54,292 KB
testcase_04 AC 220 ms
56,956 KB
testcase_05 AC 225 ms
57,484 KB
testcase_06 AC 209 ms
56,612 KB
testcase_07 WA -
testcase_08 AC 265 ms
59,324 KB
testcase_09 AC 262 ms
59,216 KB
testcase_10 AC 258 ms
57,872 KB
testcase_11 AC 270 ms
59,472 KB
testcase_12 AC 205 ms
57,040 KB
testcase_13 AC 291 ms
59,328 KB
testcase_14 AC 292 ms
59,700 KB
testcase_15 AC 209 ms
56,824 KB
testcase_16 AC 219 ms
57,076 KB
testcase_17 AC 218 ms
57,940 KB
testcase_18 AC 181 ms
54,360 KB
testcase_19 AC 267 ms
59,248 KB
testcase_20 AC 275 ms
59,756 KB
testcase_21 WA -
testcase_22 AC 237 ms
57,848 KB
testcase_23 AC 209 ms
57,476 KB
testcase_24 AC 285 ms
59,760 KB
testcase_25 AC 235 ms
57,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {
	class pair{
		int num;
		int cost;
		pair(int num,int cost){
			this.num=num;
			this.cost=cost;
		}
	}
    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[][] map = new int[n][n];
        for(int i=0;i<n;i++){
        	for(int j=0;j<n;j++){
        		map[i][j]=sc.nextInt();
        	}
        }
        int[] dx = {1,0,-1,0};
        int[] dy = {0,1,0,-1};
        
        int[][] totalcost = new int[n][n];
        for(int i=0;i<n;i++) Arrays.fill(totalcost[i], 1000000);
        Queue<Integer> queuex = new LinkedList<Integer>();
        Queue<Integer> queuey = new LinkedList<Integer>();
        Queue<Integer> hosuu = new LinkedList<Integer>();
		totalcost[sy][sx]=0;
        queuex.offer(sx);
        queuey.offer(sy);
        hosuu.offer(0);
        while(!queuex.isEmpty()){
        	int nx = queuex.poll();
        	int ny = queuey.poll();
        	int nh = hosuu.poll();
        	if(nx==gx && ny == gy){
        		System.out.println(nh);
        		return;
        	}
        	for(int i=0;i<4;i++){
        		if(nx+dx[i]>=0 && nx+dx[i]<n && ny+dy[i]>=0 && ny+dy[i]<n &&totalcost[ny][nx]+map[ny+dy[i]][nx+dx[i]]<v&& totalcost[ny][nx]+map[ny+dy[i]][nx+dx[i]]<totalcost[ny+dy[i]][nx+dx[i]]){
        			queuex.offer(nx+dx[i]);
        			queuey.offer(ny+dy[i]);
        			hosuu.offer(nh+1);
        			totalcost[ny+dy[i]][nx+dx[i]]=totalcost[ny][nx]+map[ny+dy[i]][nx+dx[i]];
        		}
        	}
        }
        System.err.println(-1);
    }
}			
0