結果

問題 No.2708 Jewel holder
ユーザー mkmk
提出日時 2024-03-31 18:17:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,672 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 54,832 KB
最終ジャッジ日時 2024-09-30 21:14:27
合計ジャッジ時間 5,571 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,080 KB
testcase_01 AC 125 ms
54,080 KB
testcase_02 AC 125 ms
53,860 KB
testcase_03 AC 126 ms
54,216 KB
testcase_04 AC 126 ms
54,216 KB
testcase_05 AC 127 ms
54,120 KB
testcase_06 AC 129 ms
53,992 KB
testcase_07 AC 125 ms
54,096 KB
testcase_08 AC 127 ms
53,992 KB
testcase_09 AC 114 ms
54,832 KB
testcase_10 AC 125 ms
53,996 KB
testcase_11 AC 127 ms
54,052 KB
testcase_12 AC 128 ms
54,144 KB
testcase_13 AC 130 ms
53,776 KB
testcase_14 AC 128 ms
54,100 KB
testcase_15 AC 127 ms
53,944 KB
testcase_16 AC 126 ms
54,256 KB
testcase_17 AC 144 ms
54,508 KB
testcase_18 AC 128 ms
54,008 KB
testcase_19 AC 130 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

public class Main {
	
	static int H;
	static int W;
	
	static String[][] A;
	
	static int route = 0;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		H = sc.nextInt();
		W = sc.nextInt();
		
		A = new String[H][W];
		
		for(int h = 0; h < H; h++) {
			String str = sc.next();
			for(int w = 0; w < W; w++) {
				A[h][w] = str.substring(w, w + 1);
			}
		}
		
//		for(int h = 0; h < H; h++) {
//			for(int w = 0; w < W; w++) {
//				System.out.print(A[h][w]);
//				if(w == W - 1) {
//					System.out.println();
//				}
//			}
//		}
		
		rec(0, 0, 1);
		System.out.println(route);
		
	}
	
	static void rec(int x, int y, int jewelry) {
//		System.out.println("(" + x + "," + y + ")" + " jewelry=" + jewelry);
		
//		if(jewelry == 0) {
//			return;
//		}
		
		boolean isOk = true;
		
		if(x == W - 1 && y == H - 1 && jewelry >= 0) {
			route++;
			return;
		}
		
		int jewelry1 = jewelry;
		int jewelry2 = jewelry;
		
		// 右へ移動
		if(x + 1 <= W - 1 && !A[y][x + 1].equals(("#"))) {
			if(A[y][x + 1].equals("o")) {
				jewelry1++;
				rec(x + 1, y, jewelry1);
			}else if(A[y][x + 1].equals("x")) {
				if(jewelry1 < 1) {
					isOk = false;
//					return;
				}else {
					jewelry1--;
					rec(x + 1, y, jewelry1);
				}
			}
		}
		
		
		// 下へ移動
		if(y + 1 <= H - 1 && !A[y + 1][x].equals(("#"))) {
			if(A[y + 1][x].equals("o")) {
				jewelry2++;
				rec(x, y + 1, jewelry2);
			}else if(A[y + 1][x].equals("x")) {
				if(jewelry2 < 1) {
					isOk = false;
//					return;
				}else {
					jewelry2--;
					rec(x, y + 1, jewelry2);
				}
			}
		}
		
		if(isOk == false) {
			return;
		}
	}
}
0