結果

問題 No.3 ビットすごろく
ユーザー yuki2006yuki2006
提出日時 2015-05-31 17:56:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 1,577 bytes
コンパイル時間 3,629 ms
コンパイル使用メモリ 79,444 KB
実行使用メモリ 42,012 KB
最終ジャッジ日時 2024-07-01 07:23:26
合計ジャッジ時間 9,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,224 KB
testcase_01 AC 133 ms
41,112 KB
testcase_02 AC 132 ms
41,356 KB
testcase_03 AC 134 ms
41,216 KB
testcase_04 AC 136 ms
41,148 KB
testcase_05 AC 139 ms
41,348 KB
testcase_06 AC 138 ms
41,124 KB
testcase_07 AC 124 ms
40,144 KB
testcase_08 AC 138 ms
41,336 KB
testcase_09 AC 143 ms
41,448 KB
testcase_10 AC 146 ms
42,012 KB
testcase_11 AC 141 ms
41,324 KB
testcase_12 AC 142 ms
41,368 KB
testcase_13 AC 139 ms
41,332 KB
testcase_14 AC 147 ms
41,364 KB
testcase_15 AC 143 ms
41,472 KB
testcase_16 AC 145 ms
41,632 KB
testcase_17 AC 142 ms
41,568 KB
testcase_18 AC 142 ms
41,164 KB
testcase_19 AC 146 ms
41,628 KB
testcase_20 AC 136 ms
41,700 KB
testcase_21 AC 135 ms
41,508 KB
testcase_22 AC 141 ms
41,400 KB
testcase_23 AC 141 ms
41,668 KB
testcase_24 AC 144 ms
41,380 KB
testcase_25 AC 143 ms
41,464 KB
testcase_26 AC 132 ms
41,292 KB
testcase_27 AC 132 ms
41,380 KB
testcase_28 AC 139 ms
41,620 KB
testcase_29 AC 137 ms
41,432 KB
testcase_30 AC 134 ms
41,728 KB
testcase_31 AC 133 ms
41,312 KB
testcase_32 AC 139 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Yuki003 {
    int bitCount(int value) {
        int count = 0;
        while (value > 0) {
            count += value % 2;

            value /= 2;
        }
        return count;
    }

    Yuki003() {
        Scanner scanner = new Scanner(System.in);

        int N = scanner.nextInt();

        System.out.println(search(N));


    }

    private int search(final int N) {
        boolean[] visit = new boolean[N + 1];
        ArrayList<Integer> list = new ArrayList<>();
        ArrayList<Integer> next = new ArrayList<>();
        list.add(1);
        int move = 1;
        visit[1] = true;
        while (list.size() > 0) {
            for (int i = 0; i < list.size(); i++) {
                final Integer value = list.get(i);
                if (value == N) {
                    return move;
                }

                int bit = bitCount(value);
                int prev = value - bit;
                int nxt = value + bit;
                if (1 <= prev && !visit[prev]) {
                    next.add(prev);
                    visit[prev] = true;

                }
                if (nxt <= N && !visit[nxt]) {
                    next.add(nxt);
                    visit[nxt] = true;

                }

            }
            list.clear();
            list.addAll(next);
            next.clear();
            move++;
        }
        return -1;
    }

    public static void main(String[] args) {
        new Yuki003();

    }
}
0