Day 2 Part 1

This commit is contained in:
Anthony Cicchetti 2021-12-02 16:35:03 -05:00
parent 8202d2a935
commit 37759d23a2
5 changed files with 1099 additions and 14 deletions

View file

@ -1,15 +1,13 @@
[package]
name = "executor"
version = "0.0.0"
name = "advent-of-code-2021"
version = "0.1.0"
authors = ["Anthony Cicchetti <anthony@anthonycicchetti.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.3"
clap = "2.34.0"
day_01 = { path = "./day_01" }
day_02 = { path = "./day_02"}
day_02 = { path = "./day_02" }
[workspace]
members = [

1000
data/day_2_input.txt Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,8 +1,7 @@
[package]
name = "day_01"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
edition = "2021"
[dependencies]
itertools = "*"
itertools = "0.10.1"

View file

@ -1,7 +1,10 @@
[package]
name = "day_02"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies]
peg = "0.7.0"
derive_more = "0.99.17"

View file

@ -1,11 +1,59 @@
enum Direction {
use std::fmt::{Debug, Formatter};
peg::parser!{
grammar input_parser() for str {
rule number() -> usize
= n:$(['0'..='9']+) {? n.parse().or(Err("u32"))}
rule forward() -> Direction
= "forward " b:number() { Direction::Forward(b) }
rule down() -> Direction
= "down " b:number() { Direction::Down(b) }
rule up() -> Direction
= "up " b:number() { Direction::Up(b) }
rule direction() -> Direction
= up() / down() / forward()
pub(crate) rule directions() -> Vec<Direction>
= a:direction() ** "\n"
}
}
#[derive(Debug)]
pub(crate) enum Direction {
Forward(usize),
Down(usize),
Up(usize),
}
pub fn input_parse(input: &str) -> Vec<Direction> {
vec![]
pub(crate) struct Submarine {
horizontal: usize,
depth: usize,
}
impl Submarine {
fn new() -> Self {
Submarine {
horizontal: 0,
depth: 0,
}
}
fn move_in_direction(&mut self, direction: &Direction) -> () {
match direction {
Direction::Forward(x) => {
self.horizontal += x;
},
Direction::Up(y) => self.depth -= y,
Direction::Down(y) => self.depth += y,
}
}
}
pub(crate) fn input_parse(input: &str) -> Vec<Direction> {
input_parser::directions(input).unwrap()
}
///Now, you need to figure out how to pilot this thing.
@ -46,5 +94,42 @@ pub fn input_parse(input: &str) -> Vec<Direction> {
///
/// 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?
pub fn part1(input: &str) -> usize {
0
let directions = input_parse(input);
let mut p = Submarine::new();
directions.iter().for_each(|direction| p.move_in_direction(direction));
p.horizontal * p.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:
///
/// ```text
/// 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:
///
/// ```text
/// 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?
pub fn part2(input: &str) -> usize {
0
}