結果

問題 No.3 ビットすごろく
ユーザー SilverBullet _RyeSilverBullet _Rye
提出日時 2023-12-02 13:50:32
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 872 bytes
コンパイル時間 3,716 ms
コンパイル使用メモリ 75,580 KB
実行使用メモリ 131,376 KB
最終ジャッジ日時 2024-09-26 16:30:06
合計ジャッジ時間 18,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,044 KB
testcase_01 AC 153 ms
53,844 KB
testcase_02 AC 154 ms
53,936 KB
testcase_03 AC 299 ms
59,048 KB
testcase_04 AC 220 ms
56,176 KB
testcase_05 AC 783 ms
67,748 KB
testcase_06 AC 295 ms
59,412 KB
testcase_07 AC 251 ms
57,172 KB
testcase_08 AC 386 ms
65,836 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

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