-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.rs
74 lines (64 loc) · 1.97 KB
/
mod.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
use std::collections::HashSet;
#[derive(Debug, Eq, PartialEq, Hash)]
struct Pos {
x: isize,
y: isize,
}
fn traverse(expanded_galaxies: &Vec<Pos>) -> isize {
let mut sum = 0;
let mut done = HashSet::new();
for p1 in expanded_galaxies {
done.insert(p1);
for p2 in expanded_galaxies {
if done.contains(p2) {
continue;
}
sum += (p2.x - p1.x).abs() + (p2.y - p1.y).abs();
}
}
sum
}
pub fn solve(input: String) {
let rows: Vec<_> = input.lines().collect();
let mut empty_cols: Vec<_> = (0..rows[0].len() as isize).collect();
let mut empty_rows: Vec<isize> = Vec::new();
let mut galaxies: Vec<_> = Vec::new();
// expansion
for (line, y) in rows.iter().zip(0isize..) {
let mut galaxy_in_row = false;
for (c, x) in line.chars().zip(0isize..) {
if c == '#' {
galaxies.push(Pos{x, y});
galaxy_in_row = true;
if empty_cols.contains(&x) {
empty_cols.retain(|v| *v != x);
}
}
}
// if completely empty, expand rows
if !galaxy_in_row {
empty_rows.push(y);
}
}
// add expansion to galaxy indices
let mut expanded_galaxies_one = Vec::new();
let mut expanded_galaxies_two = Vec::new();
for Pos{x, y} in &galaxies {
let x_expansion = empty_cols.iter().take_while(|i| i < &x).count() as isize;
let y_expansion = empty_rows.iter().take_while(|i| i < &y).count() as isize;
expanded_galaxies_one.push(Pos {
x: x + x_expansion,
y: y + y_expansion,
});
expanded_galaxies_two.push(Pos {
x: x + 999999 * x_expansion,
y: y + 999999 * y_expansion,
});
}
let sum_one = traverse(&expanded_galaxies_one);
let sum_two = traverse(&expanded_galaxies_two);
aoc::print_solution(&[
sum_one,
sum_two
])
}