結果

問題 No.34 砂漠の行商人
ユーザー 37zigen37zigen
提出日時 2016-05-01 15:43:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 454 ms / 5,000 ms
コード長 1,681 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 77,344 KB
実行使用メモリ 48,952 KB
最終ジャッジ日時 2024-06-28 10:32:01
合計ジャッジ時間 10,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,900 KB
testcase_01 AC 132 ms
41,216 KB
testcase_02 AC 178 ms
41,668 KB
testcase_03 AC 162 ms
41,348 KB
testcase_04 AC 224 ms
45,124 KB
testcase_05 AC 240 ms
45,996 KB
testcase_06 AC 207 ms
43,832 KB
testcase_07 AC 261 ms
46,524 KB
testcase_08 AC 292 ms
47,548 KB
testcase_09 AC 324 ms
47,648 KB
testcase_10 AC 276 ms
47,468 KB
testcase_11 AC 309 ms
47,448 KB
testcase_12 AC 220 ms
44,784 KB
testcase_13 AC 445 ms
48,444 KB
testcase_14 AC 451 ms
48,952 KB
testcase_15 AC 204 ms
44,400 KB
testcase_16 AC 239 ms
45,804 KB
testcase_17 AC 216 ms
45,576 KB
testcase_18 AC 187 ms
42,104 KB
testcase_19 AC 343 ms
47,712 KB
testcase_20 AC 416 ms
48,748 KB
testcase_21 AC 246 ms
45,940 KB
testcase_22 AC 248 ms
46,252 KB
testcase_23 AC 214 ms
45,116 KB
testcase_24 AC 454 ms
47,836 KB
testcase_25 AC 242 ms
46,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.ArrayDeque;
import java.util.Queue;
import java.util.Scanner;

public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	int V;
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		V=sc.nextInt();
		int sx=sc.nextInt()-1;
		int sy=sc.nextInt()-1;
		int gx=sc.nextInt()-1;
		int gy=sc.nextInt()-1;
		int[][] level=new int[n][n];
		for(int i=0;i<n;i++){
			for(int j=0;j<n;j++){
				level[i][j]=sc.nextInt();
			}
		}
		BFS bfs=new BFS(level);
		int ans=bfs.bfs(sx, sy, gx, gy);
		System.out.println(ans);
		
		
	}
	int[] dx={1,-1,0,0};
	int[] dy={0,0,-1,1};
	class BFS{
		Queue<Vertice> q;
		final long INF=Long.MAX_VALUE/4;
		int[][] table;
		int w,h;
		int[][] arrived;

		BFS(int[][] table){
			h=table.length;
			w=table[0].length;
			this.table=table;
			q=new ArrayDeque<Vertice>(h*w);
			arrived=new int[h][w];
			for(int i=0;i<h;i++){
				for(int j=0;j<w;j++){
					arrived[i][j]=0;
				}
			}
		}
		int bfs(int sx,int sy,int gx,int gy){
			q.add(new Vertice(sx,sy,0,V));
			arrived[sy][sx]=V;
			int ans=-1;
			while(!q.isEmpty()){
				Vertice v=q.poll();
				if(v.x==gx&&v.y==gy){
					ans=v.d;
					break;
				}
				for(int i=0;i<4;i++){
					int nx=v.x+dx[i];
					int ny=v.y+dy[i];
					if(nx<0||ny<0||nx>=w||ny>=h)continue;
					if(arrived[ny][nx]>=v.hp-table[ny][nx])continue;
					arrived[ny][nx]=v.hp-table[ny][nx];
					q.add(new Vertice(nx, ny, v.d+1,v.hp-table[ny][nx]));
				}
			}
			return ans;
		}
	}
	class Vertice{
		int x;
		int y;
		int d;
		int hp;
		Vertice(int x,int y,int d,int hp){
			this.x=x;
			this.y=y;
			this.d=d;
			this.hp=hp;
		}
	}
}
0