Day 2 part 2.
This commit is contained in:
parent
d4e5f1aea9
commit
eca0b7d3a1
@ -27,6 +27,30 @@
|
||||
//! 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 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:
|
||||
//!
|
||||
//! down X increases your aim by X units.
|
||||
//! up X decreases your aim by X units.
|
||||
//! forward X does two things:
|
||||
//! It increases your horizontal position by X units.
|
||||
//! It increases your depth by your aim multiplied by X.
|
||||
//! 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:
|
||||
//!
|
||||
//! forward 5 adds 5 to your horizontal position, a total of 5. Because your aim is 0, your depth does not change.
|
||||
//! down 5 adds 5 to your aim, resulting in a value of 5.
|
||||
//! forward 8 adds 8 to your horizontal position, a total of 13. Because your aim is 5, your depth increases by 8*5=40.
|
||||
//! up 3 decreases your aim by 3, resulting in a value of 2.
|
||||
//! down 8 adds 8 to your aim, resulting in a value of 10.
|
||||
//! forward 2 adds 2 to your horizontal position, a total of 15. Because your aim is 10, your depth increases by 2*10=20 to a total of 60.
|
||||
//! 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?
|
||||
|
||||
use aoc_runner_derive::{aoc, aoc_generator};
|
||||
|
||||
@ -47,12 +71,27 @@ fn part1(input: &str) -> i32 {
|
||||
horizontal * depth
|
||||
}
|
||||
|
||||
/*
|
||||
#[aoc(day2, part2)]
|
||||
fn part2(depths: &[u32]) -> u32 {
|
||||
todo!("part2")
|
||||
fn part2(input: &str) -> i32 {
|
||||
let mut horizontal: i32 = 0;
|
||||
let mut depth: i32 = 0;
|
||||
let mut aim: i32 = 0;
|
||||
input.split("\n").for_each(|l| {
|
||||
let p: Vec<_> = l.split(" ").collect();
|
||||
|
||||
match p[0] {
|
||||
"forward" => {
|
||||
let v = p[1].parse::<i32>().expect("forward");
|
||||
horizontal += v;
|
||||
depth += v * aim;
|
||||
}
|
||||
"up" => aim -= p[1].parse::<i32>().expect("up"),
|
||||
"down" => aim += p[1].parse::<i32>().expect("down"),
|
||||
_ => panic!("unknown command {}", p[0]),
|
||||
}
|
||||
});
|
||||
horizontal * depth
|
||||
}
|
||||
*/
|
||||
|
||||
#[test]
|
||||
fn test_part1() {
|
||||
@ -68,12 +107,16 @@ forward 2
|
||||
assert_eq!(part1(input), 150);
|
||||
}
|
||||
|
||||
/*
|
||||
#[test]
|
||||
fn test_part2() {
|
||||
let input = r#"
|
||||
let input = r#"
|
||||
forward 5
|
||||
down 5
|
||||
forward 8
|
||||
up 3
|
||||
down 8
|
||||
forward 2
|
||||
"#
|
||||
.trim();
|
||||
assert_eq!(part2(&parse(input)), TODO);
|
||||
.trim();
|
||||
assert_eq!(part2(input), 900);
|
||||
}
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user