generated from fspoettel/advent-of-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path22.rs
164 lines (137 loc) · 3.91 KB
/
22.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
advent_of_code::solution!(22);
use advent_of_code::maneatingape::hash::*;
use advent_of_code::maneatingape::iter::*;
use advent_of_code::maneatingape::parse::*;
type BrickId = usize;
struct Point {
x: u32,
y: u32,
z: u32,
}
struct Brick {
id: BrickId,
p1: Point,
p2: Point,
}
fn parse_data(input: &str) -> Vec<Brick> {
input
.iter_unsigned::<u32>()
.chunk::<6>()
.enumerate()
.map(|(i, [x1, y1, z1, x2, y2, z2])| Brick {
id: i,
p1: Point {
x: x1,
y: y1,
z: z1,
},
p2: Point {
x: x2,
y: y2,
z: z2,
},
})
.collect()
}
fn part_x(mut bricks: Vec<Brick>) -> Vec<FastSet<BrickId>> {
bricks.sort_unstable_by_key(|b| b.p1.z);
for (i, b) in bricks.iter_mut().enumerate() {
b.id = i;
}
let mut result = Vec::with_capacity(bricks.len());
let does_intersect_xy = |brick1: &&Brick, brick2: &&Brick| {
brick1.p1.x <= brick2.p2.x
&& brick1.p2.x >= brick2.p1.x
&& brick1.p1.y <= brick2.p2.y
&& brick1.p2.y >= brick2.p1.y
};
let mut max_z = FastMap::new();
let mut new_bricks: Vec<Brick> = Vec::with_capacity(bricks.len());
for brick in bricks {
let mut best_z = 0;
for x in brick.p1.x..=brick.p2.x {
for y in brick.p1.y..=brick.p2.y {
if let Some(v) = max_z.get(&(x, y)) {
best_z = u32::max(best_z, *v);
}
}
}
for x in brick.p1.x..=brick.p2.x {
for y in brick.p1.y..=brick.p2.y {
max_z.insert((x, y), brick.p2.z - brick.p1.z + best_z + 1);
}
}
let supporting_bricks = new_bricks
.iter()
.filter(|b| b.p2.z == best_z)
.filter(|b| does_intersect_xy(&&brick, b))
.map(|b| b.id)
.collect::<FastSet<_>>();
result.push(supporting_bricks);
new_bricks.push(Brick {
id: brick.id,
p1: Point {
x: brick.p1.x,
y: brick.p1.y,
z: best_z + 1,
},
p2: Point {
x: brick.p2.x,
y: brick.p2.y,
z: brick.p2.z - brick.p1.z + best_z + 1,
},
});
}
result
}
pub fn part_one(input: &str) -> Option<u32> {
let graph = part_x(parse_data(input));
let result = (0..graph.len())
.filter(|i| {
!graph
.iter()
.any(|ss| ss.len() == 1 && ss.iter().next().unwrap() == i)
})
.count() as u32;
Some(result)
}
pub fn part_two(input: &str) -> Option<u32> {
let graph = part_x(parse_data(input));
let result = (0..graph.len())
.map(|start_i| {
let mut destroyed = FastSet::build([start_i]);
let mut changes = true;
while changes {
changes = false;
for (i, ss) in graph.iter().enumerate() {
if ss.is_empty() {
continue;
}
if destroyed.contains(&i) {
continue;
}
if destroyed.is_superset(ss) {
destroyed.insert(i);
changes = true;
}
}
}
destroyed.len() as u32 - 1
})
.sum();
Some(result)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_part_one() {
let result = part_one(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, Some(5));
}
#[test]
fn test_part_two() {
let result = part_two(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, Some(7));
}
}