aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2023-05-21 18:00:38 +0200
committerJulien Dessaux2023-05-21 18:00:38 +0200
commit1aa25c3aa1e64933570cd2074a08e61b28aff804 (patch)
tree68b916a6fe59f477386858a9ecf847687fc890a7
parent2020-24 part 2 in haskell (diff)
downloadadvent-of-code-1aa25c3aa1e64933570cd2074a08e61b28aff804.tar.gz
advent-of-code-1aa25c3aa1e64933570cd2074a08e61b28aff804.tar.bz2
advent-of-code-1aa25c3aa1e64933570cd2074a08e61b28aff804.zip
2020-25 in haskell
-rw-r--r--2020/25-Combo_Breaker/example2
-rw-r--r--2020/25-Combo_Breaker/first.hs57
-rw-r--r--2020/25-Combo_Breaker/input2
3 files changed, 61 insertions, 0 deletions
diff --git a/2020/25-Combo_Breaker/example b/2020/25-Combo_Breaker/example
new file mode 100644
index 0000000..9cbfc23
--- /dev/null
+++ b/2020/25-Combo_Breaker/example
@@ -0,0 +1,2 @@
+5764801
+17807724
diff --git a/2020/25-Combo_Breaker/first.hs b/2020/25-Combo_Breaker/first.hs
new file mode 100644
index 0000000..151c9da
--- /dev/null
+++ b/2020/25-Combo_Breaker/first.hs
@@ -0,0 +1,57 @@
+-- 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 (fromJust)
+import Data.Set qualified as S
+import Data.Void (Void)
+import Math.NumberTheory.Powers.Modular
+import Text.Megaparsec
+import Text.Megaparsec.Char
+import System.Exit (die)
+
+exampleExpectedOutput = 14897079
+
+type Input = (Integer, Integer)
+
+type Parser = Parsec Void String
+
+parseInteger :: Parser Integer
+parseInteger = do
+ n <- some digitChar
+ void $ optional (char '\n')
+ return $ read n
+
+parseInput' :: Parser Input
+parseInput' = do
+ a <- parseInteger
+ b <- parseInteger
+ void eof
+ return (a, b)
+
+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'
+
+transform :: Integer -> Int -> Integer
+transform subjectNum loopSize = powMod subjectNum loopSize 20201227
+
+compute :: Input -> Integer
+compute (cardPubKey, doorPubKey) = encryptionKey
+ where
+ cardLoopSize = fromJust . L.elemIndex cardPubKey $ map (transform 7) [0..]
+ doorLoopSize = fromJust . L.elemIndex doorPubKey $ map (transform 7) [0..]
+ encryptionKey = transform doorPubKey cardLoopSize
+
+main :: IO ()
+main = do
+ example <- parseInput "example"
+ let exampleOutput = compute example
+ when (exampleOutput /= exampleExpectedOutput) (die $ "example failed: got " ++ show exampleOutput ++ " instead of " ++ show exampleExpectedOutput)
+ print "OK"
+ input <- parseInput "input"
+ print $ compute input
diff --git a/2020/25-Combo_Breaker/input b/2020/25-Combo_Breaker/input
new file mode 100644
index 0000000..3e56505
--- /dev/null
+++ b/2020/25-Combo_Breaker/input
@@ -0,0 +1,2 @@
+17773298
+15530095