結果

問題 No.3 ビットすごろく
ユーザー SilverBullet _RyeSilverBullet _Rye
提出日時 2023-12-02 13:55:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 763 bytes
コンパイル時間 2,423 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-09-26 16:30:16
合計ジャッジ時間 8,674 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] cnt = new int[n];
        Queue<Integer> target = new ArrayDeque<>();
        target.add(1);
        cnt[0]=1;
        while (!target.isEmpty()){
            int now = target.poll();
            if(now==n){
                System.out.println(cnt[n-1]);
                return;
            }
            int bit = Integer.bitCount(now);
            if(now-bit>=1 && cnt[now-bit-1] ==0){target.add(now-bit);cnt[now-bit-1] = cnt[now-1]+1;}
            if(now+bit<=n && cnt[now+bit-1] ==0){target.add(now+bit);cnt[now+bit-1] = cnt[now-1]+1;}
        }
        System.out.println(-1);
    }
}
0