From: Neil Smith Date: Thu, 19 Dec 2019 10:05:27 +0000 (+0000) Subject: Day 15 done X-Git-Url: https://git.njae.me.uk/?p=advent-of-code-19.git;a=commitdiff_plain;h=7d3e83b7b1ed656c499a36f6faa5cfe83ca77656 Day 15 done --- diff --git a/advent15/package.yaml b/advent15/package.yaml new file mode 100644 index 0000000..dd5494a --- /dev/null +++ b/advent15/package.yaml @@ -0,0 +1,60 @@ +# This YAML file describes your package. Stack will automatically generate a +# Cabal file when you run `stack build`. See the hpack website for help with +# this file: . + +name: advent15 +synopsis: Advent of Code +version: '0.0.1' + +default-extensions: +- AllowAmbiguousTypes +- ApplicativeDo +- BangPatterns +- BlockArguments +- DataKinds +- DeriveFoldable +- DeriveFunctor +- DeriveGeneric +- DeriveTraversable +- EmptyCase +- FlexibleContexts +- FlexibleInstances +- FunctionalDependencies +- GADTs +- GeneralizedNewtypeDeriving +- ImplicitParams +- KindSignatures +- LambdaCase +- MonadComprehensions +- MonoLocalBinds +- MultiParamTypeClasses +- MultiWayIf +- NegativeLiterals +- NumDecimals +- OverloadedLists +- OverloadedStrings +- PartialTypeSignatures +- PatternGuards +- PatternSynonyms +- PolyKinds +- RankNTypes +- RecordWildCards +- ScopedTypeVariables +- TemplateHaskell +- TransformListComp +- TupleSections +- TypeApplications +- TypeInType +- TypeOperators +- ViewPatterns + + +executables: + advent15: + main: advent15.hs + source-dirs: src + dependencies: + - base >= 2 && < 6 + - text + - containers + - intcode diff --git a/advent15/src/advent15.hs b/advent15/src/advent15.hs new file mode 100644 index 0000000..4aaee02 --- /dev/null +++ b/advent15/src/advent15.hs @@ -0,0 +1,171 @@ +import Debug.Trace + +import Intcode + +import qualified Data.Text.IO as TIO + +import qualified Data.Map.Strict as M +import Data.Map.Strict ((!)) +import Data.List +import qualified Data.Set as S + +type Position = (Integer, Integer) -- x, y +type Boundary = [Position] +data Direction = North | East | South | West deriving (Show, Eq, Ord) +data ReturnValue = Static | Moved | Goal deriving (Show, Eq, Ord) + +data Droid = Droid + { _machine :: Machine + , _executionState :: ExecutionState + , _currentInput :: [Integer] + , _machineOutput :: [Integer] + } deriving (Eq) + +instance Show Droid where + show d = "Droid {, _executionState = " ++ show (_executionState d) ++ + ", _currentInput = " ++ show (_currentInput d) ++ + ", _machineOutput = " ++ show (_machineOutput d) ++ + " }" + +data Cell = Empty { _droid :: Droid + , _fromStart :: Integer + , _isGoal :: Bool + } + | Wall + | Unknown + deriving (Show, Eq) +type Hull = M.Map Position Cell + + +main :: IO () +main = do + text <- TIO.readFile "data/advent15.txt" + let mem = parseMachineMemory text + -- print mem + print $ part1 mem + print $ part2 mem + +part1 mem = _fromStart $ snd $ M.findMin $ M.filter (containsGoal) hull + where hull = fst $ head $ searchHull $ initialHullBoundary mem + + +part2 mem = fillTime hull S.empty [(start, 0)] 0 + where hull = completeHull $ initialHullBoundary mem + start = fst $ M.findMin $ M.filter (containsGoal) hull + + +step :: Position -> Direction -> Position +step (x, y) North = (x, y + 1) +step (x, y) East = (x + 1, y) +step (x, y) South = (x, y - 1) +step (x, y) West = (x - 1, y) + +commandOf :: Direction -> Integer +commandOf North = 1 +commandOf South = 2 +commandOf West = 3 +commandOf East = 4 + +returnValue 0 = Static +returnValue 1 = Moved +returnValue 2 = Goal + + +buildDroid :: [Integer] -> Droid +buildDroid mem = Droid + { _machine = makeMachine mem + , _executionState = Runnable + , _currentInput = [] + , _machineOutput = [] + } + +initialHullBoundary :: [Integer] -> (Hull, Boundary) +initialHullBoundary mem = (hull, [(0, 0)]) + where droid = buildDroid mem + hull = M.singleton (0, 0) (Empty {_droid = droid, _fromStart = 0, _isGoal = False}) + + +searchHull :: (Hull, Boundary) -> [(Hull, Boundary)] +searchHull hullBoundary = dropWhile goalNotFound $ iterate searchHullStep hullBoundary + + +completeHull :: (Hull, Boundary) -> Hull +completeHull hullBoundary = fst $ head $ dropWhile incomplete $ iterate searchHullStep hullBoundary + + +fillTime _ _ [] t = t +fillTime hull closed ((here, t):boundary) maxt + | hull!here == Wall = fillTime hull closed boundary maxt + | S.member here closed = fillTime hull closed boundary maxt + | otherwise = fillTime hull closed' (boundary ++ neighbours) (max maxt t) + where closed' = S.insert here closed + neighbours = map (\d -> (step here d, t + 1)) directions + directions = [North, East, South, West] :: [Direction] + + +searchHullStep :: (Hull, Boundary) -> (Hull, Boundary) +-- searchHullStep (hull, _) | trace (showHull hull) False = undefined +searchHullStep (hull, []) = (hull, []) +searchHullStep (hull, (here:boundary)) = foldl' (searchHullDirection here) (hull, boundary) directions + where directions = [North, East, South, West] :: [Direction] + +searchHullDirection :: Position -> (Hull, Boundary) -> Direction -> (Hull, Boundary) +searchHullDirection here (hull, boundary) direction + | there `M.member` hull = (hull, boundary) + | found == Static = (M.insert there Wall hull, boundary) + | otherwise = (M.insert there newCell hull, boundary ++ [there]) + where there = step here direction + droid = _droid $ hull!here + distance = _fromStart $ hull!here + (droid', found) = runDroid droid direction + newCell = Empty { _droid = droid' + , _fromStart = distance + 1 + , _isGoal = (found == Goal) + } + +goalNotFound :: (Hull, Boundary) -> Bool +goalNotFound (hull, _boundary) = M.null $ M.filter containsGoal hull + +containsGoal :: Cell -> Bool +containsGoal Wall = False +containsGoal c = _isGoal c + +incomplete (_, []) = False +incomplete (_, (_:_)) = True + + +runDroid :: Droid -> Direction -> (Droid, ReturnValue) +runDroid droid direction = (droid', found) + where ci = _currentInput droid + droid' = runDroidMachine (droid {_currentInput = ci ++ [commandOf direction]}) + found = returnValue $ last $ _machineOutput droid' + + +runDroidMachine :: Droid -> Droid +runDroidMachine d = d { _machine = machine' + , _executionState = halted + , _machineOutput = output + } + where machine = _machine d + input = _currentInput d + (halted, machine', output) = runMachine input machine + + +showHull :: Hull -> String +showHull screen = unlines rows + where minX = minimum $ map fst $ M.keys screen + minY = minimum $ map snd $ M.keys screen + maxX = maximum $ map fst $ M.keys screen + maxY = maximum $ map snd $ M.keys screen + rows = [showHullRow screen minX maxX y | y <- [minY..maxY]] + +showHullRow :: Hull -> Integer -> Integer -> Integer -> String +showHullRow screen minX maxX y = [showHullCell screen x y | x <- [minX..maxX]] + +showHullCell :: Hull -> Integer -> Integer -> Char +showHullCell screen x y = + case (M.findWithDefault Unknown (x, y) screen) of + Empty _ _ True -> 'O' + Empty _ _ _ -> '.' + Wall -> '\x2588' + Unknown -> ' ' diff --git a/data/advent15.txt b/data/advent15.txt new file mode 100644 index 0000000..47ecc9d --- /dev/null +++ b/data/advent15.txt @@ -0,0 +1 @@ +3,1033,1008,1033,1,1032,1005,1032,31,1008,1033,2,1032,1005,1032,58,1008,1033,3,1032,1005,1032,81,1008,1033,4,1032,1005,1032,104,99,102,1,1034,1039,102,1,1036,1041,1001,1035,-1,1040,1008,1038,0,1043,102,-1,1043,1032,1,1037,1032,1042,1105,1,124,1002,1034,1,1039,1002,1036,1,1041,1001,1035,1,1040,1008,1038,0,1043,1,1037,1038,1042,1106,0,124,1001,1034,-1,1039,1008,1036,0,1041,1002,1035,1,1040,1001,1038,0,1043,102,1,1037,1042,1106,0,124,1001,1034,1,1039,1008,1036,0,1041,101,0,1035,1040,1002,1038,1,1043,1002,1037,1,1042,1006,1039,217,1006,1040,217,1008,1039,40,1032,1005,1032,217,1008,1040,40,1032,1005,1032,217,1008,1039,37,1032,1006,1032,165,1008,1040,33,1032,1006,1032,165,1102,1,2,1044,1105,1,224,2,1041,1043,1032,1006,1032,179,1102,1,1,1044,1106,0,224,1,1041,1043,1032,1006,1032,217,1,1042,1043,1032,1001,1032,-1,1032,1002,1032,39,1032,1,1032,1039,1032,101,-1,1032,1032,101,252,1032,211,1007,0,72,1044,1105,1,224,1101,0,0,1044,1105,1,224,1006,1044,247,101,0,1039,1034,1001,1040,0,1035,1001,1041,0,1036,102,1,1043,1038,1002,1042,1,1037,4,1044,1106,0,0,88,40,30,49,14,76,90,49,13,52,39,90,19,1,33,96,15,67,92,19,82,71,43,53,74,46,84,4,37,99,87,52,39,48,79,8,74,31,62,4,47,75,81,73,9,60,75,59,97,3,46,86,90,91,85,69,98,15,40,6,88,18,81,71,51,99,11,73,86,14,59,91,88,63,58,86,18,98,66,74,48,43,70,99,83,17,98,92,86,96,26,17,52,88,82,4,80,98,70,77,33,76,74,55,78,53,41,84,88,23,48,87,65,96,91,59,32,29,9,83,75,97,68,93,40,96,28,76,66,82,89,80,1,84,37,86,42,95,74,79,62,87,43,69,89,83,70,87,33,82,99,95,68,26,97,10,76,49,28,96,49,65,93,42,38,77,68,70,90,33,53,74,57,98,54,18,76,55,73,10,40,88,76,17,15,81,37,37,30,97,40,71,79,95,1,62,13,85,90,74,4,11,77,78,1,78,74,19,99,98,7,8,76,28,97,77,62,21,85,80,29,60,77,25,93,23,97,84,67,75,92,98,51,35,87,66,80,54,89,34,80,82,4,56,50,87,48,55,97,21,97,76,75,50,9,75,91,66,22,67,96,25,90,73,74,28,29,94,89,53,2,58,78,18,15,87,77,12,11,80,71,91,76,69,79,25,84,30,41,70,85,6,95,96,30,5,73,96,88,27,37,87,62,20,78,90,30,21,96,92,70,32,36,59,94,25,92,92,24,79,71,57,92,74,93,41,96,74,90,47,81,43,70,77,96,64,73,62,95,96,16,92,43,80,79,55,80,66,95,14,26,37,89,5,68,75,67,20,95,78,38,99,56,23,60,58,48,84,86,53,48,95,65,99,4,68,83,84,12,26,84,93,6,85,14,63,80,83,10,95,77,32,94,80,43,51,97,92,4,32,35,93,44,97,97,97,14,56,73,96,83,14,40,78,95,32,69,1,94,30,95,41,96,85,70,79,65,52,23,65,54,98,8,86,82,1,4,82,96,33,99,76,48,75,2,99,67,96,50,95,88,52,95,46,64,96,85,43,24,82,41,79,65,47,83,16,95,70,75,15,38,83,39,15,97,80,59,81,77,39,77,32,89,56,88,25,75,8,92,19,86,79,74,86,64,51,20,91,81,53,95,68,91,77,65,86,22,21,77,42,84,75,40,40,98,29,29,35,73,32,13,80,40,91,12,48,95,97,56,3,32,15,83,53,97,21,94,21,59,89,29,23,98,5,99,33,71,30,89,93,37,50,95,74,2,78,92,21,90,87,57,15,75,89,28,80,45,67,77,99,82,8,86,83,85,93,99,53,55,94,90,1,87,74,39,88,65,55,77,64,87,92,59,99,7,54,96,50,35,6,82,18,6,73,92,49,10,96,31,77,33,97,58,94,40,45,14,90,75,66,14,58,79,24,32,58,95,82,89,49,87,31,63,90,42,96,36,73,16,77,5,81,99,35,80,87,13,71,79,15,92,8,51,92,88,20,95,30,89,86,80,98,60,99,43,90,23,58,90,43,87,83,33,83,90,33,93,75,31,91,80,57,15,97,47,94,94,44,49,59,77,83,4,67,75,19,13,62,89,4,61,96,70,41,61,87,73,43,99,68,18,89,13,71,76,75,6,25,19,96,89,28,89,58,8,92,44,77,81,37,5,92,82,33,81,90,20,91,93,15,28,92,89,76,61,73,44,95,57,83,94,78,42,79,47,75,89,81,15,87,13,86,45,89,74,97,37,78,87,96,59,80,33,87,60,86,66,80,52,94,0,0,21,21,1,10,1,0,0,0,0,0,0 diff --git a/problems/day15.html b/problems/day15.html new file mode 100644 index 0000000..a45faac --- /dev/null +++ b/problems/day15.html @@ -0,0 +1,222 @@ + + + + +Day 15 - Advent of Code 2019 + + + + + + + +

Advent of Code

Neil Smith (AoC++) 30*

      /*2019*/

+ + + +
+ +

--- Day 15: Oxygen System ---

Out here in deep space, many things can go wrong. Fortunately, many of those things have indicator lights. Unfortunately, one of those lights is lit: the oxygen system for part of the ship has failed!

+

According to the readouts, the oxygen system must have failed days ago after a rupture in oxygen tank two; that section of the ship was automatically sealed once oxygen levels went dangerously low. A single remotely-operated repair droid is your only option for fixing the oxygen system.

+

The Elves' care package included an Intcode program (your puzzle input) that you can use to remotely control the repair droid. By running that program, you can direct the repair droid to the oxygen system and fix the problem.

+

The remote control program executes the following steps in a loop forever:

+
    +
  • Accept a movement command via an input instruction.
  • +
  • Send the movement command to the repair droid.
  • +
  • Wait for the repair droid to finish the movement operation.
  • +
  • Report on the status of the repair droid via an output instruction.
  • +
+

Only four movement commands are understood: north (1), south (2), west (3), and east (4). Any other command is invalid. The movements differ in direction, but not in distance: in a long enough east-west hallway, a series of commands like 4,4,4,4,3,3,3,3 would leave the repair droid back where it started.

+

The repair droid can reply with any of the following status codes:

+
    +
  • 0: The repair droid hit a wall. Its position has not changed.
  • +
  • 1: The repair droid has moved one step in the requested direction.
  • +
  • 2: The repair droid has moved one step in the requested direction; its new position is the location of the oxygen system.
  • +
+

You don't know anything about the area around the repair droid, but you can figure it out by watching the status codes.

+

For example, we can draw the area using D for the droid, # for walls, . for locations the droid can traverse, and empty space for unexplored locations. Then, the initial state looks like this:

+
      
+      
+   D  
+      
+      
+
+

To make the droid go north, send it 1. If it replies with 0, you know that location is a wall and that the droid didn't move:

+
      
+   #  
+   D  
+      
+      
+
+

To move east, send 4; a reply of 1 means the movement was successful:

+
      
+   #  
+   .D 
+      
+      
+
+

Then, perhaps attempts to move north (1), south (2), and east (4) are all met with replies of 0:

+
      
+   ## 
+   .D#
+    # 
+      
+
+

Now, you know the repair droid is in a dead end. Backtrack with 3 (which you already know will get a reply of 1 because you already know that location is open):

+
      
+   ## 
+   D.#
+    # 
+      
+
+

Then, perhaps west (3) gets a reply of 0, south (2) gets a reply of 1, south again (2) gets a reply of 0, and then west (3) gets a reply of 2:

+
      
+   ## 
+  #..#
+  D.# 
+   #  
+
+

Now, because of the reply of 2, you know you've found the oxygen system! In this example, it was only 2 moves away from the repair droid's starting position.

+

What is the fewest number of movement commands required to move the repair droid from its starting position to the location of the oxygen system?

+
+

Your puzzle answer was 220.

--- Part Two ---

You quickly repair the oxygen system; oxygen gradually fills the area.

+

Oxygen starts in the location containing the repaired oxygen system. It takes one minute for oxygen to spread to all open locations that are adjacent to a location that already contains oxygen. Diagonal locations are not adjacent.

+

In the example above, suppose you've used the droid to explore the area fully and have the following map (where locations that currently contain oxygen are marked O):

+
 ##   
+#..## 
+#.#..#
+#.O.# 
+ ###  
+
+

Initially, the only location which contains oxygen is the location of the repaired oxygen system. However, after one minute, the oxygen spreads to all open (.) locations that are adjacent to a location containing oxygen:

+
 ##   
+#..## 
+#.#..#
+#OOO# 
+ ###  
+
+

After a total of two minutes, the map looks like this:

+
 ##   
+#..## 
+#O#O.#
+#OOO# 
+ ###  
+
+

After a total of three minutes:

+
 ##   
+#O.## 
+#O#OO#
+#OOO# 
+ ###  
+
+

And finally, the whole region is full of oxygen after a total of four minutes:

+
 ##   
+#OO## 
+#O#OO#
+#OOO# 
+ ###  
+
+

So, in this example, all locations contain oxygen after 4 minutes.

+

Use the repair droid to get a complete map of the area. How many minutes will it take to fill with oxygen?

+
+

Your puzzle answer was 334.

Both parts of this puzzle are complete! They provide two gold stars: **

+

At this point, you should return to your Advent calendar and try another puzzle.

+

If you still want to see it, you can get your puzzle input.

+

You can also this puzzle.

+
+ + + + + + \ No newline at end of file diff --git a/stack.yaml b/stack.yaml index 9bb13d1..9a9c54c 100644 --- a/stack.yaml +++ b/stack.yaml @@ -52,6 +52,7 @@ packages: - advent12 - advent13 - advent14 +- advent15 # Dependency packages to be pulled from upstream that are not in the resolver.