結果

問題 No.3 ビットすごろく
ユーザー mazeppa1108mazeppa1108
提出日時 2015-06-04 22:47:46
言語 Haskell
(9.8.2)
結果
AC  
実行時間 2,159 ms / 5,000 ms
コード長 725 bytes
コンパイル時間 8,425 ms
コンパイル使用メモリ 202,880 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-01 07:24:17
合計ジャッジ時間 35,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 126 ms
9,472 KB
testcase_04 AC 16 ms
8,832 KB
testcase_05 AC 598 ms
11,520 KB
testcase_06 AC 154 ms
9,600 KB
testcase_07 AC 52 ms
8,832 KB
testcase_08 AC 379 ms
10,496 KB
testcase_09 AC 996 ms
11,520 KB
testcase_10 AC 1,428 ms
11,520 KB
testcase_11 AC 841 ms
11,520 KB
testcase_12 AC 571 ms
11,648 KB
testcase_13 AC 87 ms
8,960 KB
testcase_14 AC 1,347 ms
11,648 KB
testcase_15 AC 2,076 ms
11,520 KB
testcase_16 AC 1,776 ms
11,520 KB
testcase_17 AC 2,036 ms
11,648 KB
testcase_18 AC 68 ms
8,832 KB
testcase_19 AC 2,159 ms
11,520 KB
testcase_20 AC 11 ms
8,960 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1,384 ms
11,520 KB
testcase_23 AC 2,127 ms
11,648 KB
testcase_24 AC 2,133 ms
11,392 KB
testcase_25 AC 2,082 ms
11,520 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 108 ms
9,344 KB
testcase_28 AC 1,719 ms
11,392 KB
testcase_29 AC 885 ms
11,648 KB
testcase_30 AC 3 ms
5,760 KB
testcase_31 AC 5 ms
7,680 KB
testcase_32 AC 740 ms
11,392 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Bits
import Control.Monad.State
import qualified Data.Vector.Unboxed as U
import Debug.Trace
import Data.List

main = do
  n <- readLn
  print $ evalState (bitDice [1] n) (1, U.fromList []) 


bitDice :: [Int] -> Int -> State (Int, U.Vector Int) Int
bitDice [] _ = return $ -1
bitDice sl n  =  do
  (c, visited)  <- get   
  {-if k `U.elem` visited
      then bitDice ks n --return $ [min c $ minimum $ evalState (bitDice ks n) (c, visited)-}
  if n `elem` sl
    then return c
    else do 
      let
        nexts x = filter (\y -> y > 0 && y <= n && y `U.notElem` visited) [x + popCount x, x - popCount x]
      do 
        put (c + 1, visited U.++ U.fromList sl)
        bitDice (nub . concat $ map nexts sl) n
0