結果

問題 No.3 ビットすごろく
ユーザー r6ever6eve
提出日時 2017-08-18 10:09:51
言語 OCaml
(5.1.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 660 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 20,940 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 08:42:56
合計ジャッジ時間 1,265 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let bit_n n =
  let rec doit n acc =
    if n = 0 then acc
    else doit (n / 2) (acc + n mod 2) in
  doit n 0

let bfs n =
  let t = Array.make (n + 1) (-1) in
  let q = Queue.create () in
  t.(1) <- 1;
  Queue.add 1 q;
  while not (Queue.is_empty q) do
    let m = Queue.pop q in
    if m = n then ()
    else begin
      let i = bit_n m in
      let x, y = m + i, m - i in
      if x <= n && t.(x) = (-1) then begin
        t.(x) <- t.(m) + 1;
        Queue.add x q;
      end;
      if y > 0 && t.(y) = (-1) then begin
        t.(y) <- t.(m) + 1;
        Queue.add y q;
      end
    end
  done;
  t.(n)

let () = read_int () |> bfs |> Printf.printf "%d\n"
0