-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathday23.rs
150 lines (137 loc) · 3.69 KB
/
day23.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
use self::Direction::*;
use std::array;
use std::cmp::{max, min};
use std::collections::{BTreeMap, BTreeSet};
use std::iter::Cycle;
#[derive(Clone, Copy)]
enum Direction {
N,
S,
W,
E,
}
fn directions() -> Cycle<array::IntoIter<[Direction; 4], 4>> {
[[N, S, W, E], [S, W, E, N], [W, E, N, S], [E, N, S, W]]
.into_iter()
.cycle()
}
fn sides(direction: Direction, x: isize, y: isize) -> [(isize, isize); 3] {
match direction {
N => [x - 1, x, x + 1].map(|x| (x, y - 1)),
S => [x - 1, x, x + 1].map(|x| (x, y + 1)),
W => [y - 1, y, y + 1].map(|y| (x - 1, y)),
E => [y - 1, y, y + 1].map(|y| (x + 1, y)),
}
}
fn r#move(direction: Direction, x: isize, y: isize) -> (isize, isize) {
match direction {
N => (x, y - 1),
S => (x, y + 1),
W => (x - 1, y),
E => (x + 1, y),
}
}
fn neighbors(x: isize, y: isize) -> [(isize, isize); 8] {
[
(x - 1, y - 1),
(x - 1, y),
(x - 1, y + 1),
(x, y - 1),
(x, y + 1),
(x + 1, y - 1),
(x + 1, y),
(x + 1, y + 1),
]
}
fn parse<'a, I, S>(lines: I) -> BTreeSet<(isize, isize)>
where
I: IntoIterator<Item = &'a S>,
S: AsRef<str> + 'a,
{
lines
.into_iter()
.enumerate()
.flat_map(|(y, line)| {
line.as_ref()
.chars()
.enumerate()
.filter(|(_, c)| c == &'#')
.map(move |(x, _)| (x as isize, y as isize))
})
.collect()
}
fn step(state: &BTreeSet<(isize, isize)>, directions: &[Direction]) -> BTreeSet<(isize, isize)> {
let mut proposals = BTreeMap::new();
for &(x, y) in state {
if !neighbors(x, y).iter().any(|point| state.contains(point)) {
continue;
}
if let Some(&direction) = directions.iter().find(|&&direction| {
!sides(direction, x, y)
.iter()
.any(|point| state.contains(point))
}) {
proposals
.entry(r#move(direction, x, y))
.and_modify(|e: &mut Vec<_>| e.push((x, y)))
.or_insert_with(|| vec![(x, y)]);
}
}
proposals.retain(|_, old| old.len() == 1);
let mut state = state.clone();
for (new, old) in proposals {
state.remove(&old[0]);
state.insert(new);
}
state
}
pub fn part1<'a, I, S>(lines: I) -> usize
where
I: IntoIterator<Item = &'a S>,
S: AsRef<str> + 'a,
{
let state = directions()
.take(10)
.fold(parse(lines), |state, directions| step(&state, &directions));
let (min_x, max_x, min_y, max_y) = state.iter().fold(
(isize::MAX, isize::MIN, isize::MAX, isize::MIN),
|(min_x, max_x, min_y, max_y), &(x, y)| {
(min(min_x, x), max(max_x, x), min(min_y, y), max(max_y, y))
},
);
(max_x - min_x + 1) as usize * (max_y - min_y + 1) as usize - state.len()
}
pub fn part2<'a, I, S>(lines: I) -> usize
where
I: IntoIterator<Item = &'a S>,
S: AsRef<str> + 'a,
{
directions()
.scan(parse(lines), |state, directions| {
let next = step(state, &directions);
if state != &next {
*state = next;
Some(())
} else {
None
}
})
.count()
+ 1
}
#[cfg(test)]
mod tests {
use super::*;
use pretty_assertions::assert_eq;
static EXAMPLE: &[&str] = &[
"....#..", "..###.#", "#...#.#", ".#...##", "#.###..", "##.#.##", ".#..#..",
];
#[test]
fn part1_examples() {
assert_eq!(110, part1(EXAMPLE));
}
#[test]
fn part2_examples() {
assert_eq!(20, part2(EXAMPLE));
}
}