結果

問題 No.3 ビットすごろく
ユーザー regeregeregerege
提出日時 2015-10-14 21:36:26
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 932 bytes
コンパイル時間 10,803 ms
コンパイル使用メモリ 195,140 KB
実行使用メモリ 89,460 KB
最終ジャッジ日時 2024-07-21 15:52:23
合計ジャッジ時間 18,506 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
38,536 KB
testcase_01 AC 351 ms
89,460 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (287 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 #

    open System.Collections
    let N = int <| stdin.ReadLine()
    let bitcount (bit:int) =
        let a = (bit &&& 0x55555555) + (bit >>> 1 &&& 0x55555555) in
        let b = (a &&& 0x33333333) + (a >>> 2 &&& 0x33333333) in
        let c = (b &&& 0x0F0F0F0F) + (b >>> 4 &&& 0x0F0F0F0F) in
        let d = (c &&& 0x00FF00FF) + (c >>> 8 &&& 0x00FF00FF) in
        (d &&& 0x0000FFFF) + (d >>> 16 &&& 0x0000FFFF)
    let bits = [| yield 1; for i in 1..N -> bitcount i |]
    let cash = new BitArray(N)
    let rec s p = seq {
        let np = p + bits.[p]
        if np = N then yield np
        elif N < np then
            let nm = p - bits.[p]
            if 1 <= nm && cash.[nm] then
                failwith "-1"
            else
                yield nm
                yield! s nm
        else
            yield np
            yield! s np
        }
    try
        s 0 |> Seq.length
    with
    | _ -> -1
    |> printfn "%d"
0