結果

問題 No.3 ビットすごろく
ユーザー myuonmyuon
提出日時 2015-03-09 08:05:18
言語 Haskell
(9.8.2)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 544 bytes
コンパイル時間 7,828 ms
コンパイル使用メモリ 171,648 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-06-24 16:47:07
合計ジャッジ時間 14,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 33 ms
8,192 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 128 ms
8,192 KB
testcase_06 AC 39 ms
8,320 KB
testcase_07 AC 17 ms
7,552 KB
testcase_08 AC 85 ms
8,192 KB
testcase_09 AC 207 ms
8,320 KB
testcase_10 AC 293 ms
8,320 KB
testcase_11 AC 175 ms
8,320 KB
testcase_12 AC 120 ms
8,192 KB
testcase_13 AC 25 ms
7,936 KB
testcase_14 AC 278 ms
8,192 KB
testcase_15 AC 418 ms
8,320 KB
testcase_16 AC 361 ms
8,320 KB
testcase_17 AC 405 ms
8,320 KB
testcase_18 AC 20 ms
7,936 KB
testcase_19 AC 425 ms
8,576 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 283 ms
8,192 KB
testcase_23 AC 425 ms
8,320 KB
testcase_24 AC 428 ms
8,320 KB
testcase_25 AC 416 ms
8,320 KB
testcase_26 RE -
testcase_27 AC 29 ms
8,064 KB
testcase_28 AC 347 ms
8,320 KB
testcase_29 AC 181 ms
8,448 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 156 ms
8,192 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 Control.Applicative
import Data.List
import Data.Bits (popCount)

solve n = (\x -> if last x == [] then -1 else 1+length x) $ unfoldr next (1,[[1]]) where
  next :: (Int,[[Int]]) -> Maybe ([Int],(Int,[[Int]]))
  next (m,h'@(h:hs))
    | n `elem` h || h == [] = Nothing
    | otherwise = let k = nub $ h >>= flip step h' in Just (k,(m+1,k:h'))

  step :: Int -> [[Int]] -> [Int]
  step j hs = [i|i<-fmap ((j+) . (*popCount j)) [1,-1], 1<=i, i<=n, all (notElem i) hs]

main = do
  n <- (read :: String -> Int) <$> getLine
  print $ solve n
0