結果

問題 No.3 ビットすごろく
ユーザー snipsnipsnipsnipsnipsnip
提出日時 2016-05-16 22:11:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 1,199 bytes
コンパイル時間 2,088 ms
コンパイル使用メモリ 77,016 KB
実行使用メモリ 55,888 KB
最終ジャッジ日時 2024-07-01 07:53:10
合計ジャッジ時間 7,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,032 KB
testcase_01 AC 136 ms
53,812 KB
testcase_02 AC 134 ms
54,072 KB
testcase_03 AC 135 ms
54,160 KB
testcase_04 AC 134 ms
54,116 KB
testcase_05 AC 134 ms
54,196 KB
testcase_06 AC 133 ms
54,172 KB
testcase_07 AC 133 ms
54,068 KB
testcase_08 AC 135 ms
54,524 KB
testcase_09 AC 134 ms
54,104 KB
testcase_10 AC 135 ms
53,952 KB
testcase_11 AC 135 ms
54,192 KB
testcase_12 AC 135 ms
54,112 KB
testcase_13 AC 133 ms
53,932 KB
testcase_14 AC 134 ms
54,404 KB
testcase_15 AC 136 ms
53,956 KB
testcase_16 AC 135 ms
53,952 KB
testcase_17 AC 138 ms
54,052 KB
testcase_18 AC 134 ms
53,960 KB
testcase_19 AC 140 ms
54,384 KB
testcase_20 AC 132 ms
54,216 KB
testcase_21 AC 137 ms
54,268 KB
testcase_22 AC 135 ms
54,024 KB
testcase_23 AC 137 ms
55,888 KB
testcase_24 AC 137 ms
54,360 KB
testcase_25 AC 137 ms
54,136 KB
testcase_26 AC 132 ms
53,964 KB
testcase_27 AC 135 ms
54,180 KB
testcase_28 AC 136 ms
53,932 KB
testcase_29 AC 135 ms
54,156 KB
testcase_30 AC 133 ms
53,984 KB
testcase_31 AC 131 ms
54,356 KB
testcase_32 AC 137 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main {
  public static void main(String[] args) {
    int n = new java.util.Scanner(System.in).nextInt();
    new Main(n).solve();
  }

  private int n;

  Main(int n) {
    this.n = n;
  }

  void solve() {
    System.out.println(path(n));
  }

  int bits(int n) {
    int c = 0;
    while (n > 0) {
      c += n % 2;
      n /= 2;
    }
    return c;
  }

  int path(int n) {
    boolean[] visited = new boolean[n];
    int len = 64;
    short[] q = new short[len];
    short[] depth = new short[len];
    int head = 0;
    int tail = 0;

    q[0] = 1;
    depth[0] = 1;
    tail++;

    while (head != tail) {
      short h = q[head];
      short d = depth[head];
      head = (head + 1) % len;
      if (h == n) { return d; }
      if (h < 1 || n < h || visited[h - 1]) { continue; }

      visited[h - 1] = true;

      int b = bits(h);

      q[tail] = (short)(h + b);
      depth[tail] = (short)(d + 1);
      tail = (tail + 1) % len;
      if (head == tail) { throw new RuntimeException(); }

      q[tail] = (short)(h - b);
      depth[tail] = (short)(d + 1);
      tail = (tail + 1) % len;
      if (head == tail) { throw new RuntimeException(); }
    }

    return -1;
  }
}
0