up

--- Day 2: Dive! ---

Now, you need to figure out how to pilot this thing.

It seems like the submarine can take a series of commands like forward 1, down 2, or up 3:

Note that since you're on a submarine, down and up affect your depth, and so they have the opposite result of what you might expect.

The submarine seems to already have a planned course (your puzzle input). You should probably figure out where it's going. For example:

forward 5
down 5
forward 8
up 3
down 8
forward 2

Your horizontal position and depth both start at 0. The steps above would then modify them as follows:

After following these instructions, you would have a horizontal position of 15 and a depth of 10. (Multiplying these together produces 150.)

Calculate the horizontal position and depth you would have after following the planned course. What do you get if you multiply your final horizontal position by your final depth?

Part One Solution Source

# crystal-lang
def main(input)
  x = 0
  depth = 0

  input.lines.each do |line|
    direction, amount = line.split(" ")
    amount = amount.to_i32
    case direction
    when "forward" then x += amount
    when "up" then depth -= amount
    when "down" then depth += amount
    end
  end

  puts x * depth
end
; clojure
(require '[clojure.string :as s])

(->> input
  s/split-lines
  (map (fn [line] (s/split line #" ")))
  (map (fn [[dir speed]] [dir (#(Integer/parseInt %) speed)]))
  (reduce
    (fn [[x depth] [dir speed]]
      (cond
        (= dir "forward") [(+ x speed) depth]
        (= dir "up") [x (- depth speed)]
        (= dir "down") [x (+ depth speed)]
        :else [x depth]
      )
    )
    [0 0] ; position, depth
  )
  (reduce * 1)
)

--- Part Two ---

Based on your calculations, the planned course doesn't seem to make any sense. You find the submarine manual and discover that the process is actually slightly more complicated.

In addition to horizontal position and depth, you'll also need to track a third value, aim, which also starts at 0. The commands also mean something entirely different than you first thought:

Again note that since you're on a submarine, down and up do the opposite of what you might expect: "down" means aiming in the positive direction.

Now, the above example does something different:

After following these new instructions, you would have a horizontal position of 15 and a depth of 60. (Multiplying these produces 900.)

Using this new interpretation of the commands, calculate the horizontal position and depth you would have after following the planned course. What do you get if you multiply your final horizontal position by your final depth?

Part Two Solution Source

# crystal-lang
def main(input)
  x = 0
  depth = 0
  aim = 0

  input.lines.each do |line|
    direction, amount = line.split(" ")
    amount = amount.to_i32
    case direction
    when "forward"
      x += amount
      depth += aim * amount
    when "up" then aim -= amount
    when "down" then aim += amount
    end
  end

  puts x * depth
end
; clojure
(require '[clojure.string :as s])

(->> input
  s/split-lines
  (map (fn [line] (s/split line #" ")))
  (map (fn [[dir speed]] [dir (#(Integer/parseInt %) speed)]))
  (reduce
    (fn [[x depth aim] [dir speed]]
      (cond
        (= dir "forward") [(+ x speed) (+ depth (* aim speed)) aim]
        (= dir "up") [x depth (- aim speed)]
        (= dir "down") [x depth (+ aim speed)]
        :else [x depth aim]
      )
    )
    [0 0 0] ; position, depth, aim
  )
  (take 2)
  (reduce * 1)
)