結果

問題 No.3 ビットすごろく
ユーザー snipsnipsnipsnipsnipsnip
提出日時 2016-05-16 22:09:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,209 bytes
コンパイル時間 2,395 ms
コンパイル使用メモリ 77,448 KB
実行使用メモリ 54,560 KB
最終ジャッジ日時 2024-10-06 04:55:57
合計ジャッジ時間 7,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,028 KB
testcase_01 AC 123 ms
54,020 KB
testcase_02 AC 127 ms
53,936 KB
testcase_03 AC 123 ms
54,156 KB
testcase_04 AC 120 ms
54,004 KB
testcase_05 AC 107 ms
52,952 KB
testcase_06 AC 121 ms
54,128 KB
testcase_07 AC 119 ms
54,164 KB
testcase_08 AC 122 ms
54,100 KB
testcase_09 AC 120 ms
54,300 KB
testcase_10 AC 122 ms
54,000 KB
testcase_11 AC 127 ms
54,000 KB
testcase_12 AC 127 ms
54,228 KB
testcase_13 AC 126 ms
53,872 KB
testcase_14 AC 127 ms
54,096 KB
testcase_15 AC 122 ms
54,024 KB
testcase_16 AC 122 ms
54,188 KB
testcase_17 AC 126 ms
54,112 KB
testcase_18 AC 126 ms
54,164 KB
testcase_19 AC 126 ms
54,016 KB
testcase_20 AC 126 ms
54,060 KB
testcase_21 AC 120 ms
53,964 KB
testcase_22 AC 120 ms
54,008 KB
testcase_23 AC 123 ms
53,936 KB
testcase_24 AC 126 ms
54,080 KB
testcase_25 AC 117 ms
54,560 KB
testcase_26 WA -
testcase_27 AC 123 ms
54,260 KB
testcase_28 AC 123 ms
54,084 KB
testcase_29 AC 125 ms
54,112 KB
testcase_30 AC 111 ms
52,912 KB
testcase_31 AC 124 ms
53,980 KB
testcase_32 AC 126 ms
54,056 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 depth[head]; }
      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