advent-of-code/2023/12/Main1.hs
2023-12-11 22:33:07 -08:00

25 lines
703 B
Haskell

import Control.Applicative (liftA2)
import Data.List (group)
import Data.List.Split (splitOn)
matchesConsecutive :: [Int] -> String -> Bool
matchesConsecutive xs = (==) xs . map length . filter ((==) '#' . head) . group
getChars :: Char -> [Char]
getChars '?' = ['.', '#']
getChars c = [c]
allSprings :: String -> [String]
allSprings = foldr (liftA2 (:) . getChars) [""]
solve :: [Int] -> String -> Int
solve records = length . filter (matchesConsecutive records) . allSprings
parseLine :: String -> ([Int], String)
parseLine l = (map read . splitOn "," $ y, x)
where
(x:y:_) = splitOn " " l
main :: IO ()
main = print . sum . map (uncurry solve . parseLine) . lines =<< readFile "data.txt"