結果

問題 No.3 ビットすごろく
ユーザー tenten
提出日時 2020-11-16 18:15:46
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

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