結果

問題 No.20 砂漠のオアシス
ユーザー kano_townkano_town
提出日時 2014-11-19 21:13:10
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,266 bytes
コンパイル時間 4,047 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 59,352 KB
最終ジャッジ日時 2024-10-13 04:59:32
合計ジャッジ時間 11,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,984 KB
testcase_01 AC 129 ms
53,932 KB
testcase_02 AC 128 ms
53,956 KB
testcase_03 AC 198 ms
56,572 KB
testcase_04 AC 225 ms
57,792 KB
testcase_05 AC 334 ms
58,200 KB
testcase_06 AC 442 ms
59,024 KB
testcase_07 AC 1,392 ms
59,056 KB
testcase_08 AC 542 ms
59,144 KB
testcase_09 AC 948 ms
59,352 KB
testcase_10 AC 113 ms
52,856 KB
testcase_11 AC 113 ms
53,012 KB
testcase_12 AC 204 ms
56,568 KB
testcase_13 AC 214 ms
56,756 KB
testcase_14 AC 338 ms
58,600 KB
testcase_15 AC 295 ms
57,700 KB
testcase_16 AC 423 ms
57,848 KB
testcase_17 AC 316 ms
58,676 KB
testcase_18 WA -
testcase_19 AC 371 ms
58,708 KB
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder20 {

	int N, V, Ox, Oy;
	int[][] L;
	int[][][] dp;
	int[] dx = {1, 0, -1, 0}, dy = {0, 1, 0, -1};
	String res = "NO";

	public static void main(String[] args) {
		Yukicoder20 yuki = new Yukicoder20();
	}

	public Yukicoder20() {
		Scanner sc = new Scanner(System.in);
		N = sc.nextInt();
		V = sc.nextInt();
		Ox = sc.nextInt();
		Oy = sc.nextInt();
		L = new int[N][N];
		dp = new int[N][N][2];

		for (int i = 0; i < N; i++) {
			for (int j = 0; j < N; j++) {
				L[j][i] = sc.nextInt();
				dp[i][j][0] = -1;
				dp[i][j][1] = -1;
			}
		}

		search(0, 0, V - L[0][0], 0);

		System.out.println(res);
	}

	public void search(int nowX, int nowY, int nowV, int oasis) {
		int check = oasis;

		if (nowV <= 0) return;
		if (nowX == Ox - 1 && nowY == Oy - 1 && oasis == 0) {
			nowV *= 2;
			check = 1;
		}
		if (nowV <= dp[nowX][nowY][oasis]) return;
		if (nowX == N - 1 && nowY == N - 1) res = "YES";
		
		dp[nowX][nowY][check] = nowV;

		for (int i = 0; i < 4; i++) {
			int nextX = nowX + dx[i];
			int nextY = nowY + dy[i];
			if (nextX >= 0 && nextX < N && nextY >= 0 && nextY < N) {
				search(nextX, nextY, nowV - L[nextX][nextY], check);
			}
		}
	}
}
0