aboutsummaryrefslogtreecommitdiff
path: root/2020
diff options
context:
space:
mode:
authorJulien Dessaux2023-05-10 23:23:27 +0200
committerJulien Dessaux2023-05-10 23:23:27 +0200
commitc0ee4910e21e4e70039dafe66a18ea15ab18cd60 (patch)
tree5c5f0fdace4e095af06c45c31d36327cbd1b4e55 /2020
parent2020-21 part 1 in haskell (diff)
downloadadvent-of-code-c0ee4910e21e4e70039dafe66a18ea15ab18cd60.tar.gz
advent-of-code-c0ee4910e21e4e70039dafe66a18ea15ab18cd60.tar.bz2
advent-of-code-c0ee4910e21e4e70039dafe66a18ea15ab18cd60.zip
2020-21 part 2 in haskell
Diffstat (limited to '2020')
-rw-r--r--2020/21-Allergen_Assessment/second.hs67
1 files changed, 67 insertions, 0 deletions
diff --git a/2020/21-Allergen_Assessment/second.hs b/2020/21-Allergen_Assessment/second.hs
new file mode 100644
index 0000000..c2f57a7
--- /dev/null
+++ b/2020/21-Allergen_Assessment/second.hs
@@ -0,0 +1,67 @@
+-- requires cabal install --lib megaparsec parser-combinators
+module Main (main) where
+import Control.Monad (void, when)
+import Data.List qualified as L
+import Data.Map qualified as M
+import Data.Maybe (catMaybes)
+import Data.Set qualified as S
+import Data.Void (Void)
+import Text.Megaparsec
+import Text.Megaparsec.Char
+import System.Exit (die)
+
+exampleExpectedOutput = "mxmxvkd,sqjhc,fvjkl"
+
+newtype Ingredient = Ingredient String deriving (Eq, Ord, Read, Show)
+newtype Allergen = Allergen String deriving (Eq, Ord, Read, Show)
+type Rule = ([Ingredient], [Allergen])
+type Input = [Rule]
+
+type Parser = Parsec Void String
+
+parseRule :: Parser Rule
+parseRule = do
+ ingredients <- some ((Ingredient <$> some letterChar) <* char ' ')
+ void $ string "(contains "
+ allergens <- some ((Allergen <$> some letterChar) <* optional (string ", "))
+ void $ string ")\n"
+ return $ (ingredients, allergens)
+
+parseInput' :: Parser Input
+parseInput' = some parseRule <* eof
+
+parseInput :: String -> IO Input
+parseInput filename = do
+ input <- readFile filename
+ case runParser parseInput' filename input of
+ Left bundle -> die $ errorBundlePretty bundle
+ Right input' -> return input'
+
+compute :: Input -> String
+compute rules = L.intercalate "," . map (\(_, Ingredient i) -> i) $ M.assocs allergensMap
+ where
+ candidatesMap :: M.Map Allergen [Ingredient]
+ candidatesMap = L.foldl' appendIngredientsForRule M.empty rules
+ appendIngredientsForRule :: M.Map Allergen [Ingredient] -> Rule -> M.Map Allergen [Ingredient]
+ appendIngredientsForRule m (is, as) = L.foldl' (appendIngredientsForAllergen is) m as
+ appendIngredientsForAllergen :: [Ingredient] -> M.Map Allergen [Ingredient] -> Allergen -> M.Map Allergen [Ingredient]
+ appendIngredientsForAllergen is m a = case M.lookup a m of
+ Nothing -> M.insert a is m
+ Just is' -> M.insert a (L.intersect is is') m
+ allergensMap :: M.Map Allergen Ingredient
+ allergensMap = allergensMap' candidatesMap M.empty
+ allergensMap' :: M.Map Allergen [Ingredient] -> M.Map Allergen Ingredient -> M.Map Allergen Ingredient
+ allergensMap' m acc
+ | M.size m == 0 = acc
+ | otherwise = allergensMap' (M.map (L.delete (head oneI)) $ M.delete oneK m) $ M.insert oneK (head oneI) acc
+ where
+ one = M.filter (\is -> length is == 1) m
+ (oneK, oneI) = head $ M.assocs one
+
+main :: IO ()
+main = do
+ example <- parseInput "example"
+ let exampleOutput = compute example
+ when (exampleOutput /= exampleExpectedOutput) (die $ "example failed: got " ++ show exampleOutput ++ " instead of " ++ show exampleExpectedOutput)
+ input <- parseInput "input"
+ print $ compute input