結果

問題 No.20 砂漠のオアシス
ユーザー uafr_csuafr_cs
提出日時 2015-09-14 02:53:45
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 2,939 bytes
コンパイル時間 2,737 ms
コンパイル使用メモリ 79,836 KB
実行使用メモリ 659,668 KB
最終ジャッジ日時 2024-04-21 06:44:19
合計ジャッジ時間 14,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
50,228 KB
testcase_01 AC 68 ms
50,140 KB
testcase_02 AC 71 ms
49,968 KB
testcase_03 AC 168 ms
58,828 KB
testcase_04 AC 369 ms
77,664 KB
testcase_05 AC 221 ms
60,872 KB
testcase_06 MLE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;
import java.util.StringTokenizer;

public class Main {
	
	public static final int[][] move_dir = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};

	public static void main(String[] args) throws IOException {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int V = sc.nextInt();
		final int Ox = sc.nextInt() - 1;
		final int Oy = sc.nextInt() - 1;
		
		int[][] Lyx = new int[N][N];
		for(int i = 0; i < N; i++){
			for(int j = 0; j < N; j++){
				Lyx[i][j] = sc.nextInt();
			}
		}
		
		LinkedList<Integer> x_queue = new LinkedList<Integer>();
		LinkedList<Integer> y_queue = new LinkedList<Integer>();
		LinkedList<Integer> hp_queue = new LinkedList<Integer>();
		LinkedList<Integer> oasis_queue = new LinkedList<Integer>();
		boolean[][][][] visited = new boolean[N][N][(V + 1) * 2][2];
		visited[0][0][V][0] = true;
		x_queue.add(0);
		y_queue.add(0);
		hp_queue.add(V);
		oasis_queue.add(0);
		
		boolean ok = false;
		while(!x_queue.isEmpty()){
			final int x = x_queue.poll();
			final int y = y_queue.poll();
			final int hp = hp_queue.poll();
			final int oasis = oasis_queue.poll();
			
			if(x == N - 1 && y == N - 1){
				ok = true;
				break;
			}
			
			for(int[] move : move_dir){
				final int nx = x + move[0];
				final int ny = y + move[1];
				
				if(nx < 0 || nx >= N || ny < 0 || ny >= N){
					continue;
				}
				
				final int n_hp = hp - Lyx[ny][nx];
				if(n_hp <= 0){ continue; }
				
				if(!visited[ny][nx][n_hp][oasis]){
					visited[ny][nx][n_hp][oasis] = true;
					x_queue.add(nx);
					y_queue.add(ny);
					hp_queue.add(n_hp);
					oasis_queue.add(oasis);
				}
				
				if(oasis == 0 && Ox == nx && Oy == ny && !visited[ny][nx][n_hp * 2][1]){
					visited[ny][nx][n_hp * 2][1] = true;
					x_queue.add(nx);
					y_queue.add(ny);
					hp_queue.add(n_hp * 2);
					oasis_queue.add(1);
				}
			}
		}
		
		System.out.println(ok ? "YES" : "NO");
	}
	
	public static class Scanner implements Closeable {
		private BufferedReader br;
		private StringTokenizer tok;

		public Scanner(InputStream is) throws IOException {
			br = new BufferedReader(new InputStreamReader(is));
		}

		private void getLine() throws IOException {
			while (!hasNext()) {
				tok = new StringTokenizer(br.readLine());
			}
		}

		private boolean hasNext() {
			return tok != null && tok.hasMoreTokens();
		}

		public String next() throws IOException {
			getLine();
			return tok.nextToken();
		}

		public int nextInt() throws IOException {
			return Integer.parseInt(next());
		}

		public long nextLong() throws IOException {
			return Long.parseLong(next());
		}

		public void close() throws IOException {
			br.close();
		}
	}

}
0