結果

問題 No.3 ビットすごろく
ユーザー SilverBullet _Rye
提出日時 2023-12-02 13:50:32
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 872 bytes
コンパイル時間 3,716 ms
コンパイル使用メモリ 75,580 KB
実行使用メモリ 131,376 KB
最終ジャッジ日時 2024-09-26 16:30:06
合計ジャッジ時間 18,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9 TLE * 2 -- * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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