-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday11.rs
114 lines (93 loc) · 2.72 KB
/
day11.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
//! [Day 11: Cosmic Expansion](https://adventofcode.com/2023/day/11)
struct Puzzle {
galaxies: Vec<(u64, u64)>,
empty_rows: Vec<u64>,
empty_cols: Vec<u64>,
}
impl Puzzle {
fn new(data: &str) -> Self {
let mut puzzle = Self {
empty_rows: vec![],
empty_cols: vec![],
galaxies: vec![],
};
let mut grid = vec![];
for (line, y) in data.lines().zip(0..) {
let row: Vec<_> = line.chars().collect();
for (&c, x) in row.iter().zip(0..) {
if c == '#' {
puzzle.galaxies.push((x, y));
}
}
if row.iter().all(|&c| c == '.') {
puzzle.empty_rows.push(y);
}
grid.push(row);
}
for x in 0..grid[0].len() {
if (0..grid.len()).all(|y| grid[y][x] == '.') {
puzzle.empty_cols.push(x as u64);
}
}
puzzle
}
fn solve(&self, expansion_factor: u64) -> u64 {
let expansion_factor = expansion_factor - 1;
let mut result = 0;
for (i, &(x1, y1)) in self.galaxies.iter().enumerate() {
for &(x2, y2) in self.galaxies.iter().skip(i + 1) {
let mut distance = x2.abs_diff(x1) + y2.abs_diff(y1);
// expand empty spaces horizontally
distance += self
.empty_cols
.iter()
.filter(|&&col| x1.min(x2) <= col && col <= x1.max(x2))
.count() as u64
* expansion_factor;
// expand empty spaces vertically
distance += self
.empty_rows
.iter()
.filter(|&&row| y1.min(y2) <= row && row <= y1.max(y2))
.count() as u64
* expansion_factor;
result += distance;
}
}
result
}
/// Solve part one.
fn part1(&self) -> u64 {
self.solve(2)
}
/// Solve part two.
fn part2(&self) -> u64 {
self.solve(1_000_000)
}
}
/// # Panics
#[must_use]
pub fn solve(data: &str) -> (u64, u64) {
let puzzle = Puzzle::new(data);
(puzzle.part1(), puzzle.part2())
}
pub fn main() {
let args = aoc::parse_args();
args.run(solve);
}
#[cfg(test)]
mod test {
use super::*;
const TEST_INPUT: &str = include_str!("test.txt");
#[test]
fn test01() {
let puzzle = Puzzle::new(TEST_INPUT);
assert_eq!(puzzle.part1(), 374);
}
#[test]
fn test02() {
let puzzle = Puzzle::new(TEST_INPUT);
assert_eq!(puzzle.solve(10), 1030);
assert_eq!(puzzle.solve(100), 8410);
}
}