結果

問題 No.3 ビットすごろく
ユーザー yun_appyun_app
提出日時 2016-05-10 19:59:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,315 ms / 5,000 ms
コード長 1,253 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 78,688 KB
実行使用メモリ 64,840 KB
最終ジャッジ日時 2024-07-01 07:51:45
合計ジャッジ時間 18,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,012 KB
testcase_01 AC 56 ms
50,368 KB
testcase_02 AC 55 ms
50,168 KB
testcase_03 AC 103 ms
54,720 KB
testcase_04 AC 88 ms
51,240 KB
testcase_05 AC 254 ms
61,676 KB
testcase_06 AC 105 ms
54,428 KB
testcase_07 AC 99 ms
53,624 KB
testcase_08 AC 151 ms
55,784 KB
testcase_09 AC 496 ms
62,528 KB
testcase_10 AC 733 ms
62,880 KB
testcase_11 AC 457 ms
63,152 KB
testcase_12 AC 241 ms
60,376 KB
testcase_13 AC 95 ms
53,900 KB
testcase_14 AC 665 ms
63,032 KB
testcase_15 AC 1,190 ms
64,840 KB
testcase_16 AC 834 ms
62,748 KB
testcase_17 AC 1,117 ms
62,980 KB
testcase_18 AC 98 ms
53,716 KB
testcase_19 AC 1,299 ms
63,176 KB
testcase_20 AC 83 ms
51,016 KB
testcase_21 AC 55 ms
50,280 KB
testcase_22 AC 674 ms
62,764 KB
testcase_23 AC 1,315 ms
62,772 KB
testcase_24 AC 1,307 ms
63,524 KB
testcase_25 AC 1,212 ms
63,164 KB
testcase_26 AC 55 ms
50,188 KB
testcase_27 AC 105 ms
54,436 KB
testcase_28 AC 784 ms
62,800 KB
testcase_29 AC 526 ms
63,904 KB
testcase_30 AC 56 ms
50,164 KB
testcase_31 AC 56 ms
50,204 KB
testcase_32 AC 386 ms
63,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        ArrayList<Integer> list = new ArrayList<Integer>();
        for(int i=0;i<n;i++){
            list.add(Integer.bitCount(i+1));
        }
        calc(list,0,n,1);
        System.out.println(map.containsKey(n-1)?map.get(n-1):"-1");
    }
    
    static HashMap<Integer,Integer> map = new HashMap<Integer,Integer>();
    public static void calc(ArrayList<Integer> list,int start,int goal,int step){
        if(start<0 || start>=goal){
            return;
        }
        if(map.containsKey(start)&&map.get(start) < step){
            return;
        }
        map.put(start,step);
        if(start==goal){
            return;
        }
        int n = list.get(start);
        if(n>0){
            calc(list,start+n,goal,step+1);
            calc(list,start-n,goal,step+1);
        }
        return;
    }
}
0