blob: ff7404fcf889146d61554a3be17e0c63b8ba9a89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
-- requires cabal install --lib megaparsec parser-combinators heap vector
module Main (main) where
import Control.Applicative.Permutations
import Control.Monad (void, when)
import qualified Data.Char as C
import Data.Either
import Data.Functor
import qualified Data.Heap as H
import qualified Data.List as L
import qualified Data.Map as M
import Data.Maybe
import qualified Data.Set as S
import qualified Data.Vector as V
import qualified Data.Vector.Unboxed as VU
import Data.Void (Void)
import Text.Megaparsec
import Text.Megaparsec.Char
import Debug.Trace
exampleExpectedOutput = 16
data Tile = Start | Plot | Rock deriving Eq
instance Show Tile where
show Start = "S"
show Plot = "."
show Rock = "#"
type Line = V.Vector Tile
type Input = V.Vector Line
type Parser = Parsec Void String
parseTile :: Parser Tile
parseTile = char 'S' $> Start
<|> char '.' $> Plot
<|> char '#' $> Rock
parseLine :: Parser Line
parseLine = do
line <- some parseTile <* eol
return $ V.generate (length line) (line !!)
parseInput' :: Parser Input
parseInput' = do
line <- some parseLine <* eof
return $ V.generate (length line) (line !!)
parseInput :: String -> IO Input
parseInput filename = do
input <- readFile filename
case runParser parseInput' filename input of
Left bundle -> error $ errorBundlePretty bundle
Right input' -> return input'
type Steps = M.Map (Int, Int) ()
compute :: Input -> Int -> Int
compute input s = M.size $ compute' s start
where
compute' :: Int -> Steps -> Steps
compute' 0 steps = steps
compute' i steps = compute' (i-1) next
where
next :: Steps
next = M.foldrWithKey nextSteps M.empty steps
nextSteps :: (Int, Int) -> () -> Steps -> Steps
nextSteps (x, y) _ = nextOne (x-1, y) . nextOne (x+1, y) . nextOne (x, y-1) . nextOne (x, y+1)
nextOne :: (Int, Int) -> Steps -> Steps
nextOne (x, y) acc = case input V.!? y of
Just line -> case line V.!? x of
Just Rock -> acc
Just _ -> M.insert (x, y) () acc
_ -> acc
Nothing -> acc
start = M.singleton (mid, mid) ()
mid = V.length input `div` 2
main :: IO ()
main = do
example <- parseInput "example"
let exampleOutput = compute example 6
when (exampleOutput /= exampleExpectedOutput) (error $ "example failed: got " ++ show exampleOutput ++ " instead of " ++ show exampleExpectedOutput)
input <- parseInput "input"
print $ compute input 64
|