結果

問題 No.3 ビットすごろく
ユーザー pocaristpocarist
提出日時 2015-09-01 15:21:43
言語 OCaml
(5.1.0)
結果
AC  
実行時間 2,502 ms / 5,000 ms
コード長 954 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 21,668 KB
実行使用メモリ 45,528 KB
最終ジャッジ日時 2024-10-08 23:39:07
合計ジャッジ時間 21,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 46 ms
9,984 KB
testcase_06 AC 5 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 19 ms
9,856 KB
testcase_09 AC 334 ms
10,240 KB
testcase_10 AC 957 ms
16,288 KB
testcase_11 AC 199 ms
10,240 KB
testcase_12 AC 37 ms
9,856 KB
testcase_13 AC 4 ms
5,248 KB
testcase_14 AC 808 ms
16,260 KB
testcase_15 AC 2,199 ms
37,888 KB
testcase_16 AC 1,274 ms
16,384 KB
testcase_17 AC 1,852 ms
30,864 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 2,477 ms
45,116 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 851 ms
16,252 KB
testcase_23 AC 2,498 ms
45,184 KB
testcase_24 AC 2,502 ms
45,528 KB
testcase_25 AC 2,121 ms
37,760 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 4 ms
5,248 KB
testcase_28 AC 1,117 ms
16,260 KB
testcase_29 AC 208 ms
10,240 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 119 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(* http://yukicoder.me/problems/11 *)

let bitcount n =
    let rec loop bits num =
        if bits = 0 then num
        else loop (bits land (bits-1)) (num+1)
    in
    loop n 0

let solve n =
    let visited = Array.init (n+1) (fun _ -> false) in
    let q = Queue.create () in
    Queue.add (1,1) q;
    let ans = ref 0 in
    while !ans = 0 do
        if Queue.is_empty q then
            ans := -1
        else
        let i, cnt = Queue.take q in
        if i = n then ans := cnt
        else (
            visited.(i) <- true;
            let num = bitcount i in
            if i+num = n then ans := cnt+1
            else (
                if i+num < n && not visited.(i+num) then
                    Queue.add (i+num, cnt+1) q;
                if i-num >= 1 && not visited.(i-num) then
                    Queue.add (i-num, cnt+1) q;
            )
        )
    done;
    !ans

let () =
    Scanf.scanf "%d\n" solve
    |> Printf.printf "%d\n"
0