結果

問題 No.3 ビットすごろく
ユーザー taktak
提出日時 2019-04-27 22:34:42
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 1,013 bytes
コンパイル時間 13,785 ms
コンパイル使用メモリ 186,620 KB
実行使用メモリ 31,500 KB
最終ジャッジ日時 2024-05-07 06:08:05
合計ジャッジ時間 16,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
29,184 KB
testcase_01 AC 57 ms
29,184 KB
testcase_02 AC 56 ms
30,464 KB
testcase_03 AC 55 ms
30,592 KB
testcase_04 WA -
testcase_05 AC 59 ms
30,720 KB
testcase_06 AC 58 ms
30,976 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 55 ms
30,716 KB
testcase_13 AC 55 ms
30,592 KB
testcase_14 AC 56 ms
30,848 KB
testcase_15 AC 58 ms
30,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 59 ms
29,184 KB
testcase_22 AC 58 ms
30,848 KB
testcase_23 AC 58 ms
30,700 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 60 ms
29,696 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (286 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

let bitCount x =
    let mutable x = x
    x <- x - ((x >>> 1) &&& 0x55555555)
    x <- (x &&& 0x33333333) + ((x >>> 2) &&& 0x33333333)
    x <- (x + (x >>> 4)) &&& 0x0f0f0f0f;
    x <- x + (x >>> 8);
    x <- x + (x >>> 16);
    x &&& 0x3f

let isLeachable n =
    let dis = Array.zeroCreate (n + 1)
    dis.[1] <- 1
    let rec visit x =        
        let bit = bitCount x
        let f = x - bit
        let b = x + bit
        let f1 = f >= 1 && dis.[f] = 0
        let f2 = b <= n && dis.[b] = 0
        match (f1, f2) with
        | true, true -> 
            dis.[f] <- dis.[x] + 1
            dis.[b] <- dis.[x] + 1
            visit f
            visit b
        | true, false ->
            dis.[f] <- dis.[x] + 1
            visit f
        | false, true ->
            dis.[b] <- dis.[x] + 1
            visit b
        | false, false ->
            ()
    visit 1
    dis.[n]
        
let N = Console.ReadLine() |> int

isLeachable N
|> function
| 0 -> -1
| x -> x
|> Console.WriteLine
0