結果

問題 No.3 ビットすごろく
ユーザー Haar
提出日時 2016-03-31 14:12:00
言語 Haskell
(9.10.1)
結果
TLE  
実行時間 -
コード長 367 bytes
コンパイル時間 4,789 ms
コンパイル使用メモリ 174,208 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-10-02 08:26:14
合計ジャッジ時間 8,613 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 3 TLE * 1 -- * 29
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )

Main.hs:5:1: warning: [GHC-94817] [-Wtabs]
    Tab character found here, and in six further locations.
    Suggested fix: Please use spaces instead.
  |
5 |         | elem i path = []
  | ^^^^^^^^
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Bits

bitsugoroku :: Int -> Int -> [Int] -> [[Int]]
bitsugoroku i n path
	| elem i path = []
	| i < 1 || i > n = []
	| i == n = [i : path]
	| otherwise = concat [bitsugoroku (i + popCount i) n (i : path), bitsugoroku (i - popCount i) n (i : path)]

main = do
	n <- readLn
	let m = map length $ bitsugoroku 1 n []
	print $ if m == [] then -1 else minimum m
0