結果

問題 No.3 ビットすごろく
ユーザー zimphazimpha
提出日時 2017-03-23 11:55:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,601 bytes
コンパイル時間 2,461 ms
コンパイル使用メモリ 78,516 KB
実行使用メモリ 50,612 KB
最終ジャッジ日時 2024-07-05 20:34:41
合計ジャッジ時間 5,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,960 KB
testcase_01 AC 56 ms
37,348 KB
testcase_02 AC 58 ms
37,012 KB
testcase_03 AC 57 ms
37,340 KB
testcase_04 AC 56 ms
36,988 KB
testcase_05 AC 59 ms
37,596 KB
testcase_06 AC 60 ms
37,456 KB
testcase_07 AC 60 ms
36,792 KB
testcase_08 AC 60 ms
37,200 KB
testcase_09 AC 62 ms
37,236 KB
testcase_10 AC 64 ms
37,724 KB
testcase_11 AC 62 ms
37,072 KB
testcase_12 AC 62 ms
37,248 KB
testcase_13 AC 59 ms
36,944 KB
testcase_14 AC 62 ms
37,492 KB
testcase_15 AC 68 ms
37,740 KB
testcase_16 AC 65 ms
37,388 KB
testcase_17 AC 64 ms
37,688 KB
testcase_18 AC 57 ms
36,960 KB
testcase_19 AC 64 ms
37,780 KB
testcase_20 AC 58 ms
37,348 KB
testcase_21 AC 58 ms
37,108 KB
testcase_22 AC 63 ms
37,048 KB
testcase_23 AC 66 ms
37,412 KB
testcase_24 AC 67 ms
37,852 KB
testcase_25 AC 66 ms
37,368 KB
testcase_26 AC 58 ms
37,004 KB
testcase_27 AC 59 ms
37,452 KB
testcase_28 WA -
testcase_29 AC 62 ms
36,876 KB
testcase_30 AC 57 ms
36,676 KB
testcase_31 AC 59 ms
37,344 KB
testcase_32 AC 62 ms
37,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Collection;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
import java.util.Queue;
import java.io.BufferedReader;
import java.util.LinkedList;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 *
 * @author Chiaki.Hoshinomori
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        InputReader in = new InputReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task003 solver = new Task003();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task003 {
        public void solve(int testNumber, InputReader in, PrintWriter out) {
            int n = in.nextInt();
            int[] dis = new int[n + 2];
            Arrays.fill(dis, -1);
            Queue<Integer> queue = new LinkedList<>();
            dis[1] = 1;
            queue.add(1);
            while (!queue.isEmpty()) {
                int u = queue.poll();
                int v = popcount(u);
                if (u - v > 0 && dis[u - v] == -1) {
                    dis[u - v] = dis[u] + 1;
                    queue.add(u - v);
                }
                if (u + v <= n + 1 && dis[u + v] == -1) {
                    dis[u + v] = dis[u] + 1;
                    queue.add(u + v);
                }
            }
            out.println(dis[n]);
        }

        private int popcount(int n) {
            int r = 0;
            while (n > 0) {
                r += n % 2;
                n >>= 1;
            }
            return r;
        }

    }

    static class InputReader {
        public BufferedReader reader;
        public StringTokenizer tokenizer;

        public InputReader(InputStream stream) {
            reader = new BufferedReader(new InputStreamReader(stream), 32768);
            tokenizer = null;
        }

        public String next() {
            while (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }

    }
}

0