結果

問題 No.3 ビットすごろく
ユーザー yuma25689yuma25689
提出日時 2016-01-13 15:31:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 561 ms / 5,000 ms
コード長 1,821 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 51,360 KB
最終ジャッジ日時 2024-07-01 07:42:29
合計ジャッジ時間 11,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,104 KB
testcase_01 AC 54 ms
50,396 KB
testcase_02 AC 54 ms
50,360 KB
testcase_03 AC 99 ms
50,960 KB
testcase_04 AC 75 ms
51,176 KB
testcase_05 AC 213 ms
50,824 KB
testcase_06 AC 107 ms
51,320 KB
testcase_07 AC 83 ms
51,224 KB
testcase_08 AC 161 ms
51,136 KB
testcase_09 AC 306 ms
50,844 KB
testcase_10 AC 405 ms
51,096 KB
testcase_11 AC 266 ms
50,928 KB
testcase_12 AC 202 ms
51,244 KB
testcase_13 AC 93 ms
50,844 KB
testcase_14 AC 379 ms
51,360 KB
testcase_15 AC 554 ms
50,968 KB
testcase_16 AC 484 ms
51,172 KB
testcase_17 AC 536 ms
51,332 KB
testcase_18 AC 88 ms
51,180 KB
testcase_19 AC 559 ms
51,328 KB
testcase_20 AC 73 ms
51,096 KB
testcase_21 AC 55 ms
49,988 KB
testcase_22 AC 389 ms
51,360 KB
testcase_23 AC 561 ms
50,908 KB
testcase_24 AC 561 ms
50,828 KB
testcase_25 AC 550 ms
50,916 KB
testcase_26 AC 54 ms
50,136 KB
testcase_27 AC 96 ms
51,272 KB
testcase_28 AC 467 ms
51,120 KB
testcase_29 AC 275 ms
51,248 KB
testcase_30 AC 57 ms
49,592 KB
testcase_31 AC 59 ms
50,384 KB
testcase_32 AC 243 ms
50,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 1...N
// start=1
// goal=N

// その場に書かれている数字の2進数で表現した時の1のビット数 だけ「前」または「後」に進めることができる。
// (1未満とN+1以上のマスには移動することは出来ない、正確にNにならないとゴールできない)

// 自然数Nを与えられた時、ゴールに到達できる最短の移動数(開始のマスへも移動にカウントする)を求めてください。
// 到達できない場合は-1を出力してください。

// 開始のマスがすでにゴールになっている場合もあリます。
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static final int INF=10001;//Integer.MAX_VALUE;

    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        int n=Integer.parseInt(line);

        int[] dp = new int[n+1];
        Arrays.fill(dp, INF);

        dp[1]=1;
        // int moveCount = 1;

        for(int i=1;i<=n;i++) {
        	for(int j=1;j<=n;j++) {
        		int move = Integer.bitCount(j);//getMoveCount(j);
        		if( 0 < j+move && j+move <= n ) {
  		      		dp[j+move] = Math.min( dp[j] + 1, dp[j+move] );
  		      	}
        		if( 0 < j-move && j-move <= n ) {
  		      		dp[j-move] = Math.min( dp[j] + 1, dp[j-move] );
  		      	}
        	}
        }
        if( dp[n] == INF )
        	System.out.println(-1);
        else
        	System.out.println(dp[n]);
    }
    // public static int getMoveCount(int x)
    // {
    // 	int count=0;
	   //  for( int i = 32-1; i >= 0; i-- ) {
	   //      if( ( n >> i ) & 1 ) count++;
	   //  }
	   //  return count;
    // }
}
0