結果

問題 No.3 ビットすごろく
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 10:01:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 1,479 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 78,928 KB
実行使用メモリ 37,904 KB
最終ジャッジ日時 2024-07-01 07:28:43
合計ジャッジ時間 5,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,992 KB
testcase_01 AC 51 ms
37,008 KB
testcase_02 AC 50 ms
37,068 KB
testcase_03 AC 54 ms
36,856 KB
testcase_04 AC 52 ms
36,896 KB
testcase_05 AC 57 ms
37,204 KB
testcase_06 AC 56 ms
37,108 KB
testcase_07 AC 53 ms
36,948 KB
testcase_08 AC 55 ms
37,108 KB
testcase_09 AC 59 ms
37,248 KB
testcase_10 AC 61 ms
37,168 KB
testcase_11 AC 59 ms
36,992 KB
testcase_12 AC 57 ms
37,412 KB
testcase_13 AC 53 ms
37,124 KB
testcase_14 AC 62 ms
36,992 KB
testcase_15 AC 74 ms
37,652 KB
testcase_16 AC 61 ms
37,264 KB
testcase_17 AC 64 ms
37,480 KB
testcase_18 AC 56 ms
36,980 KB
testcase_19 AC 65 ms
37,396 KB
testcase_20 AC 54 ms
37,052 KB
testcase_21 AC 53 ms
37,016 KB
testcase_22 AC 61 ms
37,284 KB
testcase_23 AC 63 ms
37,264 KB
testcase_24 AC 67 ms
37,904 KB
testcase_25 AC 64 ms
37,632 KB
testcase_26 AC 54 ms
37,016 KB
testcase_27 AC 54 ms
37,120 KB
testcase_28 AC 63 ms
37,668 KB
testcase_29 AC 58 ms
37,216 KB
testcase_30 AC 53 ms
36,832 KB
testcase_31 AC 52 ms
36,956 KB
testcase_32 AC 57 ms
37,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int N = Integer.parseInt(br.readLine());

        int[] cource = new int[N + 1];

        ArrayList<Integer> now = new ArrayList();

        now.add(1);
        cource[1] = 1;
        for (int i = 2; true; i++) {
            ArrayList<Integer> next = new ArrayList();

            for (int tmp : now) {
                if (tmp == N) {
                    System.out.println(cource[N]);
                    return;
                }
                int bit = bitCount(tmp);

                if (tmp + bit <= N && cource[tmp + bit] == 0) {
                    cource[tmp + bit] = i;
                    next.add(tmp + bit);
                }

                if (tmp + bit >= 1 && cource[tmp - bit] == 0) {
                    cource[tmp - bit] = i;
                    next.add(tmp - bit);
                }
            }
            if (next.isEmpty()) {
                System.out.println(-1);
                return;
            }

            now = (ArrayList<Integer>) next.clone();
        }
    }

    private static int bitCount(int source) {
        int count = 0;
        for (int i = 8192; source > 0; i = i / 2) {
            if (source >= i) {
                source -= i;
                count++;
            }
        }
        return count;
    }
}
0