結果

問題 No.3 ビットすごろく
ユーザー tentententen
提出日時 2020-11-16 18:15:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 1,382 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 77,764 KB
実行使用メモリ 41,980 KB
最終ジャッジ日時 2024-07-01 10:00:15
合計ジャッジ時間 8,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,336 KB
testcase_01 AC 136 ms
41,372 KB
testcase_02 AC 135 ms
41,316 KB
testcase_03 AC 139 ms
41,344 KB
testcase_04 AC 136 ms
41,320 KB
testcase_05 AC 153 ms
41,364 KB
testcase_06 AC 140 ms
41,488 KB
testcase_07 AC 135 ms
41,128 KB
testcase_08 AC 157 ms
41,980 KB
testcase_09 AC 155 ms
41,576 KB
testcase_10 AC 161 ms
41,480 KB
testcase_11 AC 163 ms
41,552 KB
testcase_12 AC 158 ms
41,460 KB
testcase_13 AC 140 ms
41,292 KB
testcase_14 AC 159 ms
41,608 KB
testcase_15 AC 163 ms
41,588 KB
testcase_16 AC 163 ms
41,720 KB
testcase_17 AC 160 ms
41,836 KB
testcase_18 AC 134 ms
41,608 KB
testcase_19 AC 161 ms
41,652 KB
testcase_20 AC 134 ms
41,188 KB
testcase_21 AC 134 ms
41,556 KB
testcase_22 AC 161 ms
41,492 KB
testcase_23 AC 164 ms
41,664 KB
testcase_24 AC 164 ms
41,640 KB
testcase_25 AC 161 ms
41,972 KB
testcase_26 AC 131 ms
41,240 KB
testcase_27 AC 137 ms
41,228 KB
testcase_28 AC 152 ms
41,944 KB
testcase_29 AC 140 ms
40,716 KB
testcase_30 AC 134 ms
41,324 KB
testcase_31 AC 136 ms
41,444 KB
testcase_32 AC 162 ms
41,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] costs = new int[n + 1];
        Arrays.fill(costs, Integer.MAX_VALUE);
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(1, 1));
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (p.idx < 0 || p.idx > n || costs[p.idx] <= p.value) {
                continue;
            }
            costs[p.idx] = p.value;
            int count = getCount(p.idx);
            queue.add(new Path(p.idx + count, p.value + 1));
            queue.add(new Path(p.idx - count, p.value + 1));
        }
        if (costs[n] == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(costs[n]);
        }
    }
    
    static class Path implements Comparable<Path> {
        int idx;
        int value;
        
        public Path(int idx, int value) {
            this.idx = idx;
            this.value = value;
        }
        
        public int compareTo(Path another) {
            return value - another.value;
        }
    }
    
    static int getCount(int x) {
        int count = 0;
        while (x > 0) {
            count += x % 2;
            x /= 2;
        }
        return count;
    }
}
0