結果

問題 No.3 ビットすごろく
ユーザー spaciaspacia
提出日時 2015-12-16 11:06:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 177 ms / 5,000 ms
コード長 691 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 75,072 KB
実行使用メモリ 38,120 KB
最終ジャッジ日時 2024-07-01 07:38:46
合計ジャッジ時間 6,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main3 {
	
	static int max;
	static int[] minPass;
	
	public static void getPass (int i, int pass) {
		if (i <= 0 || max <= i) return;
		if (minPass[i] != -1 && minPass[i] <= pass) return;
		
		minPass[i] = pass;
		int b = Integer.bitCount(i);
		getPass(i - b, pass + 1);
		getPass(i + b, pass + 1);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		max = n + 1;
		minPass = new int[max];
		Arrays.fill(minPass , -1);
		
		getPass(1, 1);
		
		System.out.println(minPass[n]);
		
	}
}
0