-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution_2024_13.rs
137 lines (113 loc) · 3.5 KB
/
solution_2024_13.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
use std::str::FromStr;
use advent_of_code_common::bool_ops::BoolResultOps;
use advent_of_code_common::coords2d::Coords2D;
use advent_of_code_common::math::solve_two_variable_integer_linear_equation_system;
use advent_of_code_common::parsing::{
Error, parse_pair_unsafe, parse_segments_separated_by_double_newline,
};
const DATA: &str = include_str!("../../resources/13.txt");
type N = i64;
type Data = Vec<Machine>;
#[derive(Debug)]
struct Machine {
button_a: Coords2D<N>,
button_b: Coords2D<N>,
prize: Coords2D<N>,
}
impl Machine {
#[must_use]
pub fn solve(&self) -> Option<N> {
solve_two_variable_integer_linear_equation_system(
self.button_a.x,
self.button_b.x,
self.button_a.y,
self.button_b.y,
self.prize.x,
self.prize.y,
)
.map(|(a, b)| a * 3 + b)
}
}
impl FromStr for Machine {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
let lines: Vec<_> = s.lines().collect();
(lines.len() == 3).then_ok_unit(|| format!("Invalid number of lines: {}", lines.len()))?;
let a = lines[0]
.strip_prefix("Button A: ")
.ok_or("Missing prefix 'Button A: '")?;
let b = lines[1]
.strip_prefix("Button B: ")
.ok_or("Missing prefix 'Button B: '")?;
let p = lines[2]
.strip_prefix("Prize: ")
.ok_or("Missing prefix 'Prize: '")?;
let int_helper = |prefix: &str, s: &str| -> Result<N, Error> {
s.strip_prefix(prefix)
.ok_or(format!("Missing prefix '{prefix}'"))?
.parse()
.map_err(|e| format!("{e:?}"))
};
let (ax, ay) =
parse_pair_unsafe(a, ", ", |x| int_helper("X+", x), |y| int_helper("Y+", y))?;
let (bx, by) =
parse_pair_unsafe(b, ", ", |x| int_helper("X+", x), |y| int_helper("Y+", y))?;
let (px, py) =
parse_pair_unsafe(p, ", ", |x| int_helper("X=", x), |y| int_helper("Y=", y))?;
Ok(Machine {
button_a: Coords2D::new(ax, ay),
button_b: Coords2D::new(bx, by),
prize: Coords2D::new(px, py),
})
}
}
fn parse(input: &str) -> Result<Data, Error> {
parse_segments_separated_by_double_newline(input)
}
fn solve_1(data: &Data) -> N {
data.iter().filter_map(Machine::solve).sum()
}
fn solve_2(data: &Data) -> N {
let adjusted = data
.iter()
.map(|m| {
Machine {
button_a: m.button_a,
button_b: m.button_b,
prize: m.prize + Coords2D::new(10_000_000_000_000, 10_000_000_000_000),
}
})
.collect();
solve_1(&adjusted)
}
fn main() -> Result<(), Error> {
let data = parse(DATA)?;
let result_1 = solve_1(&data);
println!("Part 1: {result_1}");
let result_2 = solve_2(&data);
println!("Part 2: {result_2}");
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
const TEST_DATA: &str = include_str!("../../resources/13-test-00.txt");
fn test_data() -> Data {
parse(TEST_DATA).unwrap()
}
fn real_data() -> Data {
parse(DATA).unwrap()
}
#[test]
fn test_solve_1_test() {
assert_eq!(solve_1(&test_data()), 480);
}
#[test]
fn test_solve_1_real() {
assert_eq!(solve_1(&real_data()), 25751);
}
#[test]
fn test_solve_2_real() {
assert_eq!(solve_2(&real_data()), 108_528_956_728_655);
}
}