結果

問題 No.3 ビットすごろく
ユーザー aimBULLaimBULL
提出日時 2016-06-02 00:53:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 1,306 bytes
コンパイル時間 2,112 ms
コンパイル使用メモリ 77,716 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-07-01 07:57:47
合計ジャッジ時間 7,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,444 KB
testcase_01 AC 136 ms
41,472 KB
testcase_02 AC 135 ms
41,264 KB
testcase_03 AC 138 ms
41,544 KB
testcase_04 AC 123 ms
39,888 KB
testcase_05 AC 139 ms
41,548 KB
testcase_06 AC 139 ms
41,444 KB
testcase_07 AC 137 ms
41,536 KB
testcase_08 AC 129 ms
41,344 KB
testcase_09 AC 135 ms
41,628 KB
testcase_10 AC 136 ms
41,284 KB
testcase_11 AC 137 ms
41,572 KB
testcase_12 AC 137 ms
41,720 KB
testcase_13 AC 122 ms
40,188 KB
testcase_14 AC 123 ms
40,340 KB
testcase_15 AC 138 ms
41,528 KB
testcase_16 AC 134 ms
41,056 KB
testcase_17 AC 134 ms
41,376 KB
testcase_18 AC 137 ms
41,204 KB
testcase_19 AC 135 ms
41,440 KB
testcase_20 AC 134 ms
41,184 KB
testcase_21 AC 118 ms
40,148 KB
testcase_22 AC 137 ms
41,320 KB
testcase_23 AC 134 ms
41,276 KB
testcase_24 AC 134 ms
41,624 KB
testcase_25 AC 123 ms
40,228 KB
testcase_26 AC 133 ms
41,400 KB
testcase_27 AC 134 ms
41,312 KB
testcase_28 AC 134 ms
41,244 KB
testcase_29 AC 134 ms
41,488 KB
testcase_30 AC 130 ms
41,160 KB
testcase_31 AC 131 ms
41,036 KB
testcase_32 AC 133 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		int[] memo = create(n);
		calc(1, memo);

		System.out.println(memo[n] == Integer.MAX_VALUE ? -1 : memo[n]);
	}

	// データの格納領域を作成する
	public static int[] create(int n){
		int[] memo = new int[n+1];
		memo[0] = Integer.MAX_VALUE;
		memo[1] = 1;
		for(int i = 2; i < memo.length; i++){
			memo[i] = Integer.MAX_VALUE;
		}
		return memo;
	}

	// 移動距離計算する
	// 移動可能なマスの範囲内で移動距離を短縮できる間、再帰的に処理する
	public static void calc(int pos, int[] memo){
		int cnt = Integer.bitCount(pos);

		// 移動した場合の移動距離を計算しておく
		int cost = memo[pos] + 1;

		// 前進
		{
			int nextPos = pos + cnt;
			// 移動数が小さくなるなら、結果を記録して次のマスへ
			if(nextPos < memo.length && cost < memo[nextPos]){
				memo[nextPos] = cost;
				calc(nextPos, memo);
			}
		}

		// 後退
		{
			int prevPos = pos - cnt;
			// 移動数が小さくなるなら、結果を記録して次のマスへ
			if(prevPos > 0 && cost < memo[prevPos]){
				memo[prevPos] = cost;
				calc(prevPos, memo);
			}
		}
	}

}
0