-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday09.rs
279 lines (231 loc) · 7.45 KB
/
day09.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
use crate::solutions::Solution;
use std::cmp::Ordering;
use std::fmt::{Display, Formatter};
use std::str::FromStr;
pub struct Day09;
impl Solution for Day09 {
fn part_one(&self, input: &str) -> String {
let mut disk_map = DiskMap::from_str(input).unwrap();
let mut last_seen_digit_index = usize::MAX;
loop {
let last_digit_index = disk_map
.blocks
.iter()
.take(last_seen_digit_index)
.rposition(|v| v.is_some())
.unwrap();
let first_empty_index = disk_map.blocks.iter().position(|v| v.is_none()).unwrap();
last_seen_digit_index = last_digit_index;
if first_empty_index > last_digit_index {
break;
}
disk_map.blocks[first_empty_index] = disk_map.blocks[last_digit_index].take();
}
disk_map.checksum().to_string()
}
fn part_two(&self, input: &str) -> String {
let mut map = BlockDiskMap::from_str(input).unwrap();
let mut last_checked_index = usize::MAX;
while let Some(filled_unwrapped) = map.last_filled_until_index(last_checked_index) {
last_checked_index = filled_unwrapped.0;
if let Some(first_empty_spot) =
map.first_empty_until_index(last_checked_index, &filled_unwrapped.1)
{
map.place_filled_in_empty(filled_unwrapped, first_empty_spot);
}
}
DiskMap::from(map).checksum().to_string()
}
}
struct DiskMap {
blocks: Vec<Option<usize>>,
}
impl DiskMap {
fn checksum(&self) -> usize {
self.blocks
.iter()
.enumerate()
.map(|(i, id)| id.map_or(0, |id| i * id))
.sum()
}
}
impl FromStr for DiskMap {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
let blocks: Vec<Option<usize>> = s
.trim()
.chars()
.enumerate()
.flat_map(|(i, c)| {
let times: usize = c.to_digit(10).expect("cannot parse char to usize") as usize;
let value = if i % 2 == 0 { Some(i / 2) } else { None };
vec![value; times]
})
.collect();
Ok(Self { blocks })
}
}
impl Display for DiskMap {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let value: String = self
.blocks
.iter()
.map(|v| match v {
None => '.',
Some(v) => char::from_digit((v % 10) as u32, 10).unwrap(),
})
.collect();
write!(f, "{}", value)
}
}
impl From<BlockDiskMap> for DiskMap {
fn from(value: BlockDiskMap) -> Self {
let blocks = value
.blocks
.into_iter()
.flat_map(|v| match v {
Block::Empty { size } => vec![None; size],
Block::Filled { size, id } => vec![Some(id); size],
})
.collect();
Self { blocks }
}
}
#[derive(Debug, PartialEq, Clone)]
enum Block {
Empty { size: usize },
Filled { size: usize, id: usize },
}
impl Block {
fn empty(size: usize) -> Self {
Self::Empty { size }
}
fn filled(size: usize, id: usize) -> Self {
Self::Filled { size, id }
}
fn size(&self) -> usize {
match self {
Block::Empty { size } => size.to_owned(),
Block::Filled { size, .. } => size.to_owned(),
}
}
fn split(&self, other: &Self) -> Vec<Self> {
match (self, other) {
(
Block::Empty { size: empty_size },
Block::Filled {
size: filled_size,
id,
},
) => {
assert!(
*filled_size <= *empty_size,
"filled size cannot be greater than empty"
);
match filled_size.cmp(empty_size) {
Ordering::Equal => vec![Block::filled(*filled_size, *id)],
Ordering::Less => vec![
Block::filled(*filled_size, *id),
Block::empty(*empty_size - filled_size),
],
Ordering::Greater => unreachable!(),
}
}
_ => panic!("illegal block"),
}
}
}
#[derive(Debug, PartialEq)]
struct BlockDiskMap {
blocks: Vec<Block>,
}
impl FromStr for BlockDiskMap {
type Err = ();
fn from_str(s: &str) -> Result<Self, Self::Err> {
let blocks: Vec<Block> = s
.trim()
.chars()
.enumerate()
.map(|(i, c)| {
let size: usize = c.to_digit(10).expect("cannot parse char to usize") as usize;
if i % 2 == 0 {
Block::filled(size, i / 2)
} else {
Block::empty(size)
}
})
.collect();
Ok(Self { blocks })
}
}
impl BlockDiskMap {
fn last_filled_until_index(&self, max_index: usize) -> Option<(usize, Block)> {
self.blocks
.iter()
.take(max_index)
.enumerate()
.rfind(|(_, block)| matches!(block, Block::Filled { .. }))
.map(|(i, block)| (i, block.clone()))
}
fn first_empty_until_index(&self, max_index: usize, other: &Block) -> Option<(usize, Block)> {
self.blocks
.iter()
.take(max_index)
.enumerate()
.find(|(_, block)| matches!(block, Block::Empty { .. }) && block.size() >= other.size())
.map(|(i, block)| (i, block.clone()))
}
fn place_filled_in_empty(&mut self, filled: (usize, Block), empty: (usize, Block)) {
let (empty_index, empty_block) = empty;
let (filled_index, filled_block) = filled;
if !matches!(empty_block, Block::Empty { .. }) {
panic!("should be empty")
}
if !matches!(filled_block, Block::Filled { .. }) {
panic!("should be filled")
}
let split = empty_block.split(&filled_block);
self.blocks[filled_index] = Block::empty(filled_block.size());
self.blocks.remove(empty_index);
self.blocks.splice(empty_index..empty_index, split);
}
}
#[cfg(test)]
mod tests {
use crate::solutions::year2024::day09::{Block, BlockDiskMap, Day09, DiskMap};
use crate::solutions::Solution;
use std::str::FromStr;
const EXAMPLE: &str = "2333133121414131402";
#[test]
fn part_one_example_test() {
assert_eq!("1928", Day09.part_one(EXAMPLE));
}
#[test]
fn part_two_example_test() {
assert_eq!("2858", Day09.part_two(EXAMPLE));
}
#[test]
fn disk_map_parse_test() {
let result = DiskMap::from_str("12345").unwrap();
assert_eq!("0..111....22222", result.to_string());
let result = DiskMap::from_str(EXAMPLE).unwrap();
assert_eq!(
"00...111...2...333.44.5555.6666.777.888899",
result.to_string()
);
}
#[test]
fn block_disk_map_parse_test() {
let sut = BlockDiskMap::from_str("12345").unwrap();
let expected = BlockDiskMap {
blocks: vec![
Block::filled(1, 0),
Block::empty(2),
Block::filled(3, 1),
Block::empty(4),
Block::filled(5, 2),
],
};
assert_eq!(expected, sut);
}
}