結果

問題 No.3 ビットすごろく
ユーザー yuki2006yuki2006
提出日時 2014-09-30 03:17:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 5,000 ms
コード長 1,473 bytes
コンパイル時間 2,860 ms
コンパイル使用メモリ 78,704 KB
実行使用メモリ 57,072 KB
最終ジャッジ日時 2024-07-01 07:02:01
合計ジャッジ時間 9,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,076 KB
testcase_01 AC 140 ms
54,372 KB
testcase_02 AC 140 ms
54,068 KB
testcase_03 AC 158 ms
56,472 KB
testcase_04 AC 145 ms
53,712 KB
testcase_05 AC 172 ms
56,864 KB
testcase_06 AC 161 ms
56,848 KB
testcase_07 AC 149 ms
56,000 KB
testcase_08 AC 175 ms
56,708 KB
testcase_09 AC 189 ms
56,668 KB
testcase_10 AC 185 ms
56,800 KB
testcase_11 AC 178 ms
56,664 KB
testcase_12 AC 174 ms
57,028 KB
testcase_13 AC 150 ms
56,200 KB
testcase_14 AC 186 ms
56,708 KB
testcase_15 AC 190 ms
56,580 KB
testcase_16 AC 185 ms
56,700 KB
testcase_17 AC 188 ms
56,612 KB
testcase_18 AC 148 ms
56,436 KB
testcase_19 AC 194 ms
57,004 KB
testcase_20 AC 146 ms
54,152 KB
testcase_21 AC 142 ms
54,132 KB
testcase_22 AC 190 ms
56,940 KB
testcase_23 AC 196 ms
57,072 KB
testcase_24 AC 201 ms
56,928 KB
testcase_25 AC 192 ms
56,900 KB
testcase_26 AC 136 ms
54,020 KB
testcase_27 AC 157 ms
56,444 KB
testcase_28 AC 185 ms
56,804 KB
testcase_29 AC 179 ms
56,844 KB
testcase_30 AC 145 ms
54,260 KB
testcase_31 AC 136 ms
54,012 KB
testcase_32 AC 175 ms
57,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner scanner = new Scanner(System.in);
        int N = scanner.nextInt();
        boolean[] check = new boolean[N + 1];

        System.out.println(bfs(N, check));

    }

    public static class Tuple {
        public int a;
        public int b;

        Tuple(int a, int b) {
            this.a = a;
            this.b = b;
        }

    }

    private static int bfs(int n, boolean[] check) {
        LinkedList<Tuple> queue = new LinkedList<>();
        queue.add(new Tuple(1, 1));
        check[1] = true;

        while (queue.size() > 0) {
            Tuple v = queue.pollFirst();
            if (v.a == n) {
                return v.b;
            }

            int bitCount = getBitCount(v.a);

            int a = v.a - bitCount;
            int b = v.a + bitCount;

            if (a > 0) {
                if (!check[a]) {
                    check[a] = true;
                    queue.add(new Tuple(a, v.b + 1));
                }
            }
            if (b <= n) {
                if (!check[b]) {

                    queue.add(new Tuple(b, v.b + 1));
                }
            }
        }
        return -1;
    }


    static int getBitCount(int n) {
        int count;
        for (count = 0; n > 0; count++) {
            n = n & (n - 1);
        }
        return count;
    }

}
0