結果

問題 No.3 ビットすごろく
ユーザー taktak
提出日時 2019-04-27 22:37:19
言語 F#
(F# 4.0)
結果
AC  
実行時間 520 ms / 5,000 ms
コード長 1,077 bytes
コンパイル時間 13,224 ms
コンパイル使用メモリ 187,552 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-07-01 09:20:00
合計ジャッジ時間 21,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
29,312 KB
testcase_01 AC 57 ms
29,440 KB
testcase_02 AC 56 ms
30,680 KB
testcase_03 AC 85 ms
31,104 KB
testcase_04 AC 59 ms
29,420 KB
testcase_05 AC 188 ms
30,836 KB
testcase_06 AC 90 ms
30,680 KB
testcase_07 AC 68 ms
29,312 KB
testcase_08 AC 139 ms
29,440 KB
testcase_09 AC 273 ms
29,440 KB
testcase_10 AC 367 ms
29,440 KB
testcase_11 AC 240 ms
28,928 KB
testcase_12 AC 180 ms
30,848 KB
testcase_13 AC 76 ms
30,720 KB
testcase_14 AC 349 ms
30,592 KB
testcase_15 AC 507 ms
30,720 KB
testcase_16 AC 446 ms
29,312 KB
testcase_17 AC 494 ms
29,400 KB
testcase_18 AC 74 ms
29,272 KB
testcase_19 AC 517 ms
29,696 KB
testcase_20 AC 57 ms
29,272 KB
testcase_21 AC 55 ms
29,184 KB
testcase_22 AC 356 ms
31,104 KB
testcase_23 AC 518 ms
31,104 KB
testcase_24 AC 520 ms
29,400 KB
testcase_25 AC 507 ms
29,568 KB
testcase_26 AC 57 ms
29,184 KB
testcase_27 AC 81 ms
29,312 KB
testcase_28 AC 431 ms
29,308 KB
testcase_29 AC 245 ms
29,300 KB
testcase_30 AC 56 ms
29,312 KB
testcase_31 AC 57 ms
29,312 KB
testcase_32 AC 214 ms
29,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (301 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 newCost = dis.[x] + 1
        let f1 = f >= 1 && (dis.[f] = 0 || dis.[f] > newCost)
        let f2 = b <= n && (dis.[b] = 0 || dis.[b] > newCost)
        match (f1, f2) with
        | true, true -> 
            dis.[f] <- newCost
            dis.[b] <- newCost
            visit f
            visit b
        | true, false ->
            dis.[f] <- newCost
            visit f
        | false, true ->
            dis.[b] <- newCost
            visit b
        | false, false ->
            ()
    visit 1
    dis.[n]
        
let N = Console.ReadLine() |> int

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