day-03 part-2

This commit is contained in:
2024-12-03 10:04:55 +02:00
parent d986d89c78
commit dccc6a2270
9 changed files with 164 additions and 20 deletions

View File

@@ -11,6 +11,7 @@ nom.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
miette.workspace = true
thiserror.workspace = true
regex = "1.11"
[dev-dependencies]

4
2024/day-03/bench.txt Normal file
View File

@@ -0,0 +1,4 @@
day_03_bench fastest │ slowest │ median │ mean │ samples │ iters
├─ part1 246.9 µs │ 778.4 µs │ 254.9 µs │ 308.9 µs │ 100 │ 100
╰─ part2 361.4 µs │ 1.433 ms │ 379.5 µs │ 574.4 µs │ 100 │ 100

View File

@@ -1,9 +1,107 @@
use miette::Result;
use miette::{Diagnostic, Result};
use regex::Regex;
use thiserror::Error;
#[derive(Error, Debug, Diagnostic)]
pub enum MultiplicationError {
#[error("Failed to parse first value: {0}")]
#[diagnostic(code(calculator::parse_error::first_value))]
FirstValueParseError(String),
#[error("Failed to parse second value: {0}")]
#[diagnostic(code(calculator::parse_error::second_value))]
SecondValueParseError(String),
#[error("Invalid multiplication format")]
#[diagnostic(code(calculator::parse_error::format))]
InvalidFormat,
}
#[derive(Debug)]
struct Multiplication(usize, usize);
impl Multiplication {
fn calculate(&self) -> usize {
self.0 * self.1
}
}
impl<T, U> TryFrom<(T, U)> for Multiplication
where
T: AsRef<str>,
U: AsRef<str>,
{
type Error = MultiplicationError;
fn try_from(value: (T, U)) -> std::result::Result<Self, Self::Error> {
let first =
value.0.as_ref().parse().map_err(|_| {
MultiplicationError::FirstValueParseError(value.0.as_ref().to_string())
});
let second =
value.1.as_ref().parse().map_err(|_| {
MultiplicationError::SecondValueParseError(value.1.as_ref().to_string())
});
Ok(Self(first?, second?))
}
}
#[derive(Error, Debug, Diagnostic)]
pub enum CalculatorError {
#[error("Failed to compile regex: {0}")]
#[diagnostic(code(calculator::regex_error))]
RegexError(#[from] regex::Error),
#[diagnostic(code(calculator::multiplication_error))]
#[error("Failed to parse multiplication: {0}")]
MultiplicationError(#[from] MultiplicationError),
#[error("Failed to process input: {0}")]
#[diagnostic(code(calculator::process_error))]
ProcessError(String),
}
#[derive(Debug)]
struct Calculator {
do_re: Regex,
mult_re: Regex,
}
impl Calculator {
fn new() -> Result<Self, CalculatorError> {
Ok(Self {
do_re: Regex::new(r"^.*?don't\(\)|do\(\)(.*?)don't\(\)|do\(\).*$")?,
mult_re: Regex::new(r"mul\((\d{1,3}),(\d{1,3})\)")?,
})
}
fn extract_multiplications<'a>(
&'a self,
line: &'a str,
) -> impl Iterator<Item = Multiplication> + 'a {
self.mult_re.captures_iter(line).filter_map(|caps| {
Multiplication::try_from((caps.get(1)?.as_str(), caps.get(2)?.as_str())).ok()
})
}
fn extract_do<'a>(&'a self, line: &'a str) -> impl Iterator<Item = &'a str> + 'a {
self.do_re
.captures_iter(line)
.filter_map(|caps| caps.get(0).map(|m| m.as_str()))
}
fn process(&self, input: &str) -> usize {
let value = input.lines().collect::<String>();
self.extract_do(&value)
.flat_map(|line| self.extract_multiplications(line))
.map(|mult| mult.calculate())
.sum()
}
}
#[tracing::instrument]
pub fn process(input: &str) -> Result<usize> {
todo!("day xx - part 2");
Ok(0)
let calculator = Calculator::new()?;
Ok(calculator.process(input))
}
#[cfg(test)]
@@ -12,9 +110,8 @@ mod tests {
#[test]
fn test_process() -> Result<()> {
let input = "";
todo!("haven't built test yet");
let result = 0;
let input = "xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))";
let result = 48;
assert_eq!(process(input)?, result);
Ok(())
}