day 9, no written tests yet

This commit is contained in:
Yann Esposito (Yogsototh) 2017-12-09 15:35:24 +01:00
parent 36f8d39622
commit b613bf7e45
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646
5 changed files with 162 additions and 0 deletions

View file

@ -36,6 +36,7 @@ library
Day6
Day7
Day8
Day9
other-modules:
Paths_adventofcode
build-depends:

View file

@ -14,6 +14,7 @@ import qualified Day5
import qualified Day6
import qualified Day7
import qualified Day8
import qualified Day9
showSol :: [Char] -> Doc -> IO ()
showSol txt d = putText . toS . render $
@ -33,6 +34,7 @@ solutions = Map.fromList [(["1"], day1)
,(["6"], day6)
,(["7"], day7)
,(["8"], day8)
,(["9"], day9)
]
day1 :: IO ()
@ -85,3 +87,11 @@ day8 = do
showSol "Solution 1" (int sol1)
let sol2 = Day8.solution2 input
showSol "Solution 2" (int sol2)
day9 :: IO ()
day9 = do
putText "Day 9:"
sol1 <- Day9.solution1
showSol "Solution 1" (int sol1)
sol2 <- Day9.solution2
showSol "Solution 2" (int sol2)

1
inputs/day9.txt Normal file

File diff suppressed because one or more lines are too long

View file

@ -21,6 +21,7 @@ library:
- Day6
- Day7
- Day8
- Day9
dependencies:
- base >=4.7 && <5
- protolude

149
src/Day9.hs Normal file
View file

@ -0,0 +1,149 @@
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-|
description:
--- Day 9: Stream Processing ---
A large stream blocks your path. According to the locals, it's not safe to cross
the stream at the moment because it's full of garbage. You look down at the
stream; rather than water, you discover that it's a stream of characters.
You sit for a while and record part of the stream (your puzzle input). The
characters represent groups - sequences that begin with { and end with }. Within
a group, there are zero or more other things, separated by commas: either
another group or garbage. Since groups can contain other groups, a } only closes
the most-recently-opened unclosed group - that is, they are nestable. Your
puzzle input represents a single, large group which itself contains many smaller
ones.
Sometimes, instead of a group, you will find garbage. Garbage begins with < and
ends with >. Between those angle brackets, almost any character can appear,
including { and }. Within garbage, < has no special meaning.
In a futile attempt to clean up the garbage, some program has canceled some of
the characters within it using !: inside garbage, any character that comes after
! should be ignored, including <, >, and even another !.
You don't see any characters that deviate from these rules. Outside garbage, you
only find well-formed groups, and garbage always terminates according to the
rules above.
Here are some self-contained pieces of garbage:
- <>, empty garbage.
- <random characters>, garbage containing random characters.
- <<<<>, because the extra < are ignored.
- <{!>}>, because the first > is canceled.
- <!!>, because the second ! is canceled, allowing the > to terminate the garbage.
- <!!!>>, because the second ! and the first > are canceled.
- <{o"i!a,<{i<a>, which ends at the first >.
Here are some examples of whole streams and the number of groups they contain:
- {}, 1 group.
- {{{}}}, 3 groups.
- {{},{}}, also 3 groups.
- {{{},{},{{}}}}, 6 groups.
- {<{},{},{{}}>}, 1 group (which itself contains garbage).
- {<a>,<a>,<a>,<a>}, 1 group.
- {{<a>},{<a>},{<a>},{<a>}}, 5 groups.
- {{<!>},{<!>},{<!>},{<a>}}, 2 groups (since all but the last > are canceled).
Your goal is to find the total score for all groups in your input. Each group is
assigned a score which is one more than the score of the group that immediately
contains it. (The outermost group gets a score of 1.)
- {}, score of 1.
- {{{}}}, score of 1 + 2 + 3 = 6.
- {{},{}}, score of 1 + 2 + 2 = 5.
- {{{},{},{{}}}}, score of 1 + 2 + 3 + 3 + 3 + 4 = 16.
- {<a>,<a>,<a>,<a>}, score of 1.
- {{<ab>},{<ab>},{<ab>},{<ab>}}, score of 1 + 2 + 2 + 2 + 2 = 9.
- {{<!!>},{<!!>},{<!!>},{<!!>}}, score of 1 + 2 + 2 + 2 + 2 = 9.
- {{<a!>},{<a!>},{<a!>},{<ab>}}, score of 1 + 2 = 3.
What is the total score for all groups in your input?
--- Part Two ---
Now, you're ready to remove the garbage.
To prove you've removed it, you need to count all of the characters within the
garbage. The leading and trailing < and > don't count, nor do any canceled
characters or the ! doing the canceling.
<>, 0 characters.
<random characters>, 17 characters.
<<<<>, 3 characters.
<{!>}>, 2 characters.
<!!>, 0 characters.
<!!!>>, 0 characters.
<{o"i!a,<{i<a>, 10 characters.
How many non-canceled characters are within the garbage in your puzzle input?
|-}
module Day9 where
import Protolude hiding ((<|>),many)
import qualified Data.Map.Strict as Map
import Text.Parsec
solution1 :: IO Int
solution1 = do
str <- readFile "inputs/day9.txt"
return $ either (const 0) identity (parseGroups str)
parseGroups :: Text -> Either ParseError Int
parseGroups = runParser groups (0,0) "Groups 1"
groups :: Parsec Text (Int,Int) Int
groups = do
c <- char '{'
updateState (\(d,s) -> (d+1,s+d+1))
(groups <|> garbage) `sepBy` (char ',')
c <- char '}'
updateState (\(d,s) -> (d-1,s))
fmap snd getState
garbage :: Parsec Text (Int,Int) Int
garbage = do
c1 <- char '<'
endGarbage
where
endGarbage :: Parsec Text (Int,Int) Int
endGarbage = do
c2 <- anyChar
case c2 of
'>' -> return 0
'!' -> anyChar >> endGarbage
_ -> endGarbage
solution2 :: IO Int
solution2 = do
str <- readFile "inputs/day9.txt"
return $ either (const 0) identity (parseGroups2 str)
parseGroups2 :: Text -> Either ParseError Int
parseGroups2 = runParser groups2 0 "Groups 2"
groups2 :: Parsec Text Int Int
groups2 = do
c <- char '{'
(groups2 <|> garbage2) `sepBy` (char ',')
c <- char '}'
getState
garbage2 :: Parsec Text Int Int
garbage2 = do
c1 <- char '<'
endGarbage
where
endGarbage :: Parsec Text Int Int
endGarbage = do
c2 <- anyChar
case c2 of
'>' -> return 0
'!' -> anyChar >> endGarbage
_ -> updateState (+1) >> endGarbage