結果

問題 No.3 ビットすごろく
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 07:07:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 1,585 bytes
コンパイル時間 3,997 ms
コンパイル使用メモリ 79,792 KB
実行使用メモリ 54,840 KB
最終ジャッジ日時 2024-07-01 07:19:14
合計ジャッジ時間 9,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,956 KB
testcase_01 AC 132 ms
54,444 KB
testcase_02 AC 133 ms
53,848 KB
testcase_03 AC 156 ms
54,424 KB
testcase_04 AC 155 ms
54,304 KB
testcase_05 AC 153 ms
54,316 KB
testcase_06 AC 150 ms
54,140 KB
testcase_07 AC 155 ms
54,192 KB
testcase_08 AC 153 ms
54,228 KB
testcase_09 AC 154 ms
54,528 KB
testcase_10 AC 177 ms
54,576 KB
testcase_11 AC 155 ms
54,364 KB
testcase_12 AC 154 ms
54,476 KB
testcase_13 AC 161 ms
54,100 KB
testcase_14 AC 177 ms
54,460 KB
testcase_15 AC 178 ms
54,772 KB
testcase_16 AC 177 ms
54,824 KB
testcase_17 AC 175 ms
54,572 KB
testcase_18 AC 156 ms
54,256 KB
testcase_19 AC 176 ms
54,732 KB
testcase_20 AC 143 ms
54,364 KB
testcase_21 AC 133 ms
54,344 KB
testcase_22 AC 172 ms
54,448 KB
testcase_23 AC 171 ms
54,380 KB
testcase_24 AC 178 ms
54,840 KB
testcase_25 AC 174 ms
54,648 KB
testcase_26 AC 134 ms
54,180 KB
testcase_27 AC 150 ms
53,584 KB
testcase_28 AC 172 ms
54,768 KB
testcase_29 AC 153 ms
54,348 KB
testcase_30 AC 135 ms
54,092 KB
testcase_31 AC 134 ms
54,084 KB
testcase_32 AC 155 ms
54,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.3 ビットすごろく

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No3 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = sc.nextInt();
        final int[] d = new int[n];
        fill(d,Integer.MAX_VALUE);
        d[0] = 1;
        TreeSet<Integer> que = new TreeSet<Integer>(new Comparator<Integer>(){
            public int compare(Integer a, Integer b) {
                if (d[a] != d[b]) return d[a] - d[b];
                return a - b;
            }
        });

        que.add(0);

        while (!que.isEmpty()) {
            int cur = que.pollFirst();
            int bit = Integer.bitCount(cur+1);
            if (cur - bit >= 0 && d[cur-bit] > d[cur] + 1) {
                d[cur-bit] = d[cur] + 1;
                que.remove(cur-bit);
                que.add(cur-bit);
            }
            if (cur + bit <n && d[cur + bit] > d[cur] + 1) {
                d[cur+bit] = d[cur] + 1;
                que.remove(cur+bit);
                que.add(cur+bit);
            }
        }

        out.println(d[n-1]==Integer.MAX_VALUE?"-1":d[n-1]);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0