結果

問題 No.3 ビットすごろく
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-12 00:14:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 931 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 78,616 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-11-29 04:08:48
合計ジャッジ時間 7,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,088 KB
testcase_01 AC 114 ms
53,676 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 129 ms
54,220 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 119 ms
54,064 KB
testcase_08 AC 105 ms
52,772 KB
testcase_09 AC 120 ms
54,020 KB
testcase_10 AC 130 ms
54,292 KB
testcase_11 AC 127 ms
54,072 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 116 ms
52,932 KB
testcase_17 AC 116 ms
53,032 KB
testcase_18 AC 125 ms
53,856 KB
testcase_19 AC 129 ms
54,044 KB
testcase_20 AC 126 ms
54,060 KB
testcase_21 AC 122 ms
53,716 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 117 ms
52,836 KB
testcase_25 AC 129 ms
54,284 KB
testcase_26 AC 121 ms
54,148 KB
testcase_27 AC 109 ms
53,124 KB
testcase_28 AC 125 ms
54,084 KB
testcase_29 AC 123 ms
53,872 KB
testcase_30 AC 123 ms
54,092 KB
testcase_31 AC 118 ms
54,044 KB
testcase_32 AC 113 ms
53,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        boolean [] boo = new boolean [N+1];
        int [] c = new int [N+1];
        for(int i=2; i<=N; i++){
            c[i]=Integer.MAX_VALUE;
        }
        c[1]=1;
        Queue<Integer> q = new LinkedList<>();
        q.add(1);
        while(!q.isEmpty()){
            int t = q.poll();
            int p = Integer.bitCount(t);
            int b = t-p;
            int f = t+p;
            if(b>0){
                c[b]=Math.min(c[b],c[t]+1);
                if(boo[b]==false)q.add(b);
                boo[b]=true;
            }
            if(f<=N){
                c[f]=Math.min(c[f],c[t]+1);
                if(boo[f]==false)q.add(f);
                boo[f]=true;
            }
        }
        if(c[N]==0)c[N]=-1;
        System.out.println(c[N]);
    }
}
0