AoC/2021/day03/day03.hs

29 lines
885 B
Haskell
Raw Permalink Normal View History

2021-12-09 23:39:57 +01:00
import Data.Bits
import Data.Char
2021-12-05 23:26:29 +01:00
import Data.List
main :: IO ()
main = do
input <- lines <$> readFile "input"
2021-12-09 23:39:57 +01:00
let rating = take (length $ head input) $ transpose (map tails input)
let [gamma, epsilon] = [toDec $ map (commonBit f) rating | f <- [(<=), (>)]]
2021-12-05 23:26:29 +01:00
print $ gamma * epsilon
2021-12-09 23:39:57 +01:00
let part2 = [genRating x input [] | x <- [(<=), (>)]]
print $ product $ map toDec part2
2021-12-05 23:26:29 +01:00
2021-12-09 23:39:57 +01:00
commonBit :: (Int -> Int -> Bool) -> [String] -> Int
commonBit f =
(\[x, y] -> fromEnum (x `f` y)) .
map (length) . group . sort . head . transpose
genRating :: (Int -> Int -> Bool) -> [String] -> [Int] -> [Int]
genRating _ (x:[]) acc = acc ++ (map digitToInt x)
genRating f input acc =
genRating
f
(map tail $ filter (isPrefixOf (show $ commonBit f input)) input)
(acc ++ [commonBit f input])
toDec :: [Int] -> Int
toDec = sum . map (uncurry (*)) . zip (map bit [0 ..]) . reverse