-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #161 from ephemient/hs/day24
- Loading branch information
Showing
6 changed files
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{-# LANGUAGE OverloadedStrings #-} | ||
|
||
-- | | ||
-- Module: Day24 | ||
-- Description: <https://adventofcode.com/2024/day/24 Day 24: Crossed Wires> | ||
module Day24 (part1) where | ||
|
||
import Control.Applicative ((<|>)) | ||
import Control.Monad (join, liftM2) | ||
import Data.Bifunctor (bimap) | ||
import Data.Bits ((.&.), (.^.), (.|.)) | ||
import Data.Char (isAlphaNum) | ||
import Data.Functor (($>)) | ||
import Data.Map qualified as Map (dropWhileAntitone, fromList, takeWhileAntitone, (!?)) | ||
import Data.String (IsString) | ||
import Data.Text (Text) | ||
import Data.Text qualified as T (singleton) | ||
import Data.Void (Void) | ||
import Text.Megaparsec (MonadParsec, ParseErrorBundle, Token, Tokens, choice, parse, sepEndBy, takeWhile1P) | ||
import Text.Megaparsec.Char (newline, string) | ||
import Text.Megaparsec.Char.Lexer qualified as L (decimal) | ||
|
||
data Expr a = Expr a :&: Expr a | Expr a :|: Expr a | Expr a :^: Expr a | Literal a | ||
|
||
parser :: (MonadParsec e s m, IsString (Tokens s), Token s ~ Char, Num a) => m ([(Tokens s, a)], [(Tokens s, Expr (Tokens s))]) | ||
parser = (,) <$> (initial `sepEndBy` newline) <* newline <*> (wire `sepEndBy` newline) | ||
where | ||
initial = (,) <$> takeWhile1P Nothing isAlphaNum <* string ": " <*> L.decimal | ||
wire = | ||
flip (,) | ||
<$> ( (flip ($) . Literal <$> takeWhile1P Nothing isAlphaNum) | ||
<*> choice [string " AND " $> (:&:), string " OR " $> (:|:), string " XOR " $> (:^:)] | ||
<*> (Literal <$> takeWhile1P Nothing isAlphaNum) | ||
) | ||
<* string " -> " | ||
<*> takeWhile1P Nothing isAlphaNum | ||
|
||
part1 :: Text -> Either (ParseErrorBundle Text Void) (Maybe Int) | ||
part1 input = do | ||
(givens, wires) <- bimap Map.fromList Map.fromList <$> parse parser "" input | ||
let values = fmap eval wires | ||
eval (a :&: b) = (.&.) <$> eval a <*> eval b | ||
eval (a :|: b) = (.|.) <$> eval a <*> eval b | ||
eval (a :^: b) = (.^.) <$> eval a <*> eval b | ||
eval (Literal a) = givens Map.!? a <|> join (values Map.!? a) | ||
pure $ | ||
foldr (liftM2 . flip $ (+) . (*) 2) (Just 0) $ | ||
Map.takeWhileAntitone (< T.singleton (succ 'z')) $ | ||
Map.dropWhileAntitone (< "z") values |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{-# LANGUAGE OverloadedStrings #-} | ||
|
||
module Day24Spec (spec) where | ||
|
||
import Data.Text (Text) | ||
import Data.Text qualified as T (unlines) | ||
import Day24 (part1) | ||
import Test.Hspec (Spec, describe, it, shouldBe) | ||
|
||
example1, example2 :: Text | ||
example1 = | ||
T.unlines | ||
[ "x00: 1", | ||
"x01: 1", | ||
"x02: 1", | ||
"y00: 0", | ||
"y01: 1", | ||
"y02: 0", | ||
"", | ||
"x00 AND y00 -> z00", | ||
"x01 XOR y01 -> z01", | ||
"x02 OR y02 -> z02" | ||
] | ||
example2 = | ||
T.unlines | ||
[ "x00: 1", | ||
"x01: 0", | ||
"x02: 1", | ||
"x03: 1", | ||
"x04: 0", | ||
"y00: 1", | ||
"y01: 1", | ||
"y02: 1", | ||
"y03: 1", | ||
"y04: 1", | ||
"", | ||
"ntg XOR fgs -> mjb", | ||
"y02 OR x01 -> tnw", | ||
"kwq OR kpj -> z05", | ||
"x00 OR x03 -> fst", | ||
"tgd XOR rvg -> z01", | ||
"vdt OR tnw -> bfw", | ||
"bfw AND frj -> z10", | ||
"ffh OR nrd -> bqk", | ||
"y00 AND y03 -> djm", | ||
"y03 OR y00 -> psh", | ||
"bqk OR frj -> z08", | ||
"tnw OR fst -> frj", | ||
"gnj AND tgd -> z11", | ||
"bfw XOR mjb -> z00", | ||
"x03 OR x00 -> vdt", | ||
"gnj AND wpb -> z02", | ||
"x04 AND y00 -> kjc", | ||
"djm OR pbm -> qhw", | ||
"nrd AND vdt -> hwm", | ||
"kjc AND fst -> rvg", | ||
"y04 OR y02 -> fgs", | ||
"y01 AND x02 -> pbm", | ||
"ntg OR kjc -> kwq", | ||
"psh XOR fgs -> tgd", | ||
"qhw XOR tgd -> z09", | ||
"pbm OR djm -> kpj", | ||
"x03 XOR y03 -> ffh", | ||
"x00 XOR y04 -> ntg", | ||
"bfw OR bqk -> z06", | ||
"nrd XOR fgs -> wpb", | ||
"frj XOR qhw -> z04", | ||
"bqk OR frj -> z07", | ||
"y03 OR x01 -> nrd", | ||
"hwm AND bqk -> z03", | ||
"tgd XOR rvg -> z12", | ||
"tnw OR pbm -> gnj" | ||
] | ||
|
||
spec :: Spec | ||
spec = do | ||
describe "part 1" $ do | ||
it "examples" $ do | ||
part1 example1 `shouldBe` Right (Just 4) | ||
part1 example2 `shouldBe` Right (Just 2024) |