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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
module Main (main) where
import System.Environment ( getArgs )
import Data.Bifunctor (first, second)
main :: IO ()
main = getArgs >>= readFile . head >>= print . solveDay5
solveDay5 :: String -> String
solveDay5 input = solveDay5Part1 x ++ ", " ++ solveDay5Part2 x
where x = parseDay5Input input
data Day5Input = Day5Input {
state :: Stacks,
commands :: Commands
}
newtype Stack = Stack [Char]
newtype Stacks = Stacks [Stack] -- Encoding: First element is topmost crate.
-- Destructure Stacks
unStacks :: Stacks -> [Stack]
unStacks (Stacks x) = x
newtype Commands = Commands [Command]
data Command = Move {
amount :: Int,
source :: Int,
destination :: Int
}
parseDay5Input :: String -> Day5Input
parseDay5Input input = Day5Input { state = parseStacks x, commands = parseCommands y}
where (x,y) = separateStacksFromCommands $ lines input
separateStacksFromCommands :: [String] -> ([String],[String])
separateStacksFromCommands ([]:bs) = ([],bs)
separateStacksFromCommands (a:as) = Data.Bifunctor.first (a:) $ separateStacksFromCommands as
-- let's fill the data from bottom to top.
parseStacks :: [String] -> Stacks
parseStacks = foldl addStackLine (Stacks []) . drop 1 . reverse
addStackLine :: Stacks -> String -> Stacks
addStackLine s (' ':'[':a:']':as) = addStackLine s ('[':a:']':as)
addStackLine (Stacks (s:ss)) (' ':' ':' ':' ':as) = Stacks (s : unStacks (addStackLine (Stacks ss) as))
addStackLine (Stacks (s:ss)) (' ':' ':' ':as) = Stacks (s : unStacks (addStackLine (Stacks ss) as))
addStackLine (Stacks (s:ss)) ('[':a:']':as) = Stacks (addToStack s a : unStacks (addStackLine (Stacks ss) as))
where addToStack (Stack s) a = Stack (a:s)
addStackLine (Stacks []) ('[':a:']':as) = Stacks (Stack [a] : unStacks (addStackLine (Stacks []) as))
addStackLine s [] = s
addStackLine _ s = error ("Malformed input" ++ s)
-- With malformed input, there would be patterns we won't catch. But our input is well-formed.
parseCommands :: [String] -> Commands
parseCommands = Commands . map parseCommand
parseCommand :: String -> Command
parseCommand = parseWordedCommand . words
where parseWordedCommand ("move":details) = parseMove details
where parseMove [count, "from", origin, "to", target] = Move {amount = read count, source = read origin, destination = read target}
parseWordedCommand _ = error "Unsupported Command."
solveDay5Part1 :: Day5Input -> String
solveDay5Part1 Day5Input {state = state, commands = Commands c} = printTops $ foldl (flip applyCommand) state c
applyCommand :: Command -> Stacks -> Stacks
applyCommand (Move 1 source destination) = moveSingle source destination
applyCommand (Move amount source destination) = applyCommand (Move (amount-1) source destination) . moveSingle source destination
moveSingle :: Int -> Int -> Stacks -> Stacks
moveSingle from to = placeCrate to . takeCrate from
placeCrate :: Int -> (Char, Stacks) -> Stacks
placeCrate 1 (crate, Stacks ((Stack s):ss)) = Stacks (Stack (crate:s):ss)
placeCrate n (crate, Stacks (s:ss)) = Stacks $ s : unStacks (placeCrate (n-1) (crate, Stacks ss))
takeCrate :: Int -> Stacks -> (Char, Stacks)
takeCrate 1 (Stacks ((Stack (s:ss)):sss)) = (s, Stacks (Stack ss:sss))
takeCrate n (Stacks (Stack s:ss)) | n > 1 = second (\x -> Stacks (Stack s:unStacks x)) (takeCrate (n-1) (Stacks ss))
-- Should maybe add this to all take/place?
-- takeCrate _ (Stacks []) = error "Index for Take is out of bounds."
-- takeCrate 1 (Stacks ((Stack []):sss)) = error "Attempted to take a crate from an empty stockpile."
-- takeCrate n _ | n < 1 = error "Index for Take is out of bounds."
printTops :: Stacks -> String
printTops (Stacks s) = foldr ((:) . getTop) "" s
getTop :: Stack -> Char
getTop (Stack s) = head s
solveDay5Part2 :: Day5Input -> String
solveDay5Part2 Day5Input {state = state, commands = Commands c} = printTops $ foldl (flip applyCommandNewerCrane) state c
applyCommandNewerCrane :: Command -> Stacks -> Stacks
applyCommandNewerCrane (Move amount source destination) = moveMany amount source destination
moveMany :: Int -> Int -> Int -> Stacks -> Stacks
moveMany count from to = placeMany to . takeMany count from
placeMany :: Int -> (Stack, Stacks) -> Stacks
placeMany 1 (Stack crates, Stacks ((Stack s):ss)) = Stacks (Stack (crates ++ s):ss)
placeMany from (crates, Stacks (s:ss)) = Stacks $ s : unStacks (placeMany (from-1) (crates, Stacks ss))
takeMany :: Int -> Int -> Stacks -> (Stack, Stacks)
takeMany count 1 (Stacks ((Stack s):ss)) = (Stack taken,Stacks (Stack rest:ss))
where taken = take count s
rest = drop count s
takeMany count n (Stacks (Stack s:ss)) = second (\x -> Stacks (Stack s:unStacks x)) (takeMany count (n-1) (Stacks ss))
|