結果
| 問題 | No.3 ビットすごろく |
| コンテスト | |
| ユーザー |
r6eve
|
| 提出日時 | 2017-08-18 10:09:51 |
| 言語 | OCaml (5.2.1) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 5,000 ms |
| コード長 | 660 bytes |
| コンパイル時間 | 341 ms |
| コンパイル使用メモリ | 20,812 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-09 00:26:52 |
| 合計ジャッジ時間 | 1,482 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
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"
r6eve