結果

問題 No.3 ビットすごろく
ユーザー pocaristpocarist
提出日時 2015-09-01 13:00:24
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 9,920 ms
コンパイル使用メモリ 185,216 KB
実行使用メモリ 35,372 KB
最終ジャッジ日時 2024-07-18 17:28:17
合計ジャッジ時間 22,670 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
34,736 KB
testcase_01 AC 340 ms
34,440 KB
testcase_02 AC 336 ms
34,352 KB
testcase_03 AC 338 ms
34,392 KB
testcase_04 AC 337 ms
33,728 KB
testcase_05 AC 337 ms
34,852 KB
testcase_06 AC 337 ms
34,648 KB
testcase_07 AC 337 ms
34,616 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 338 ms
34,828 KB
testcase_13 AC 338 ms
34,628 KB
testcase_14 AC 340 ms
33,900 KB
testcase_15 AC 339 ms
34,580 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 336 ms
34,876 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 339 ms
34,352 KB
testcase_22 AC 338 ms
34,756 KB
testcase_23 AC 337 ms
35,084 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 337 ms
34,572 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 337 ms
34,608 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (261 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// http://yukicoder.me/problems/11
open System

let dprintfn fmt = Printf.kprintf Diagnostics.Debug.WriteLine fmt

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

let solve N =
    let dp = Array.init (N+1) (fun _ -> -1)
    let rec f i ans =
        dp.[i] <- if dp.[i] > 0 then min dp.[i] ans else ans
        if i = N then () else
        let n = bitcount i
        if i+n < N+1 && dp.[i+n] = -1 then
            f (i+n) (ans+1)
        if i-n > 0 && dp.[i-n] = -1 then
            f (i-n) (ans+1)
    f 1 1
    dp.[N]

[<EntryPoint>]
let main argv = 
    let N = Console.ReadLine() |> int
    solve N
    |> printfn "%d" 
    0
0