generated from fspoettel/advent-of-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path21.rs
174 lines (146 loc) · 4.5 KB
/
21.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
use cached::proc_macro::cached;
use itertools::Itertools;
use std::collections::HashMap;
advent_of_code::solution!(21);
#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
struct Pos(i32, i32);
#[cached]
fn complexity(from: char, to: char, mut robot_count: i32) -> u64 {
robot_count -= 1;
let dir_layout: HashMap<char, Pos> = [
('^', Pos(1, 0)),
('A', Pos(2, 0)),
('<', Pos(0, 1)),
('v', Pos(1, 1)),
('>', Pos(2, 1)),
]
.iter()
.cloned()
.collect();
let num_layout: HashMap<char, Pos> = [
('7', Pos(0, 0)),
('8', Pos(1, 0)),
('9', Pos(2, 0)),
('4', Pos(0, 1)),
('5', Pos(1, 1)),
('6', Pos(2, 1)),
('1', Pos(0, 2)),
('2', Pos(1, 2)),
('3', Pos(2, 2)),
('0', Pos(1, 3)),
('A', Pos(2, 3)),
]
.iter()
.cloned()
.collect();
let layout = if dir_layout.contains_key(&from) && dir_layout.contains_key(&to) {
&dir_layout
} else {
&num_layout
};
let start = layout[&from];
let end = layout[&to];
let dx = end.0 - start.0;
let dy = end.1 - start.1;
// Directions to move
let dx_dir = if dx > 0 { ">" } else { "<" };
let dy_dir = if dy > 0 { "v" } else { "^" };
// Create the steps vector
let steps: Vec<&str> = vec![dx_dir; dx.unsigned_abs() as usize]
.into_iter()
.chain(vec![dy_dir; dy.unsigned_abs() as usize])
.collect();
let mut paths = vec![];
let mut stack = vec![(Vec::new(), steps)];
// Paths
while let Some((current_path, remaining_steps)) = stack.pop() {
if remaining_steps.is_empty() {
let mut complete_path = current_path;
complete_path.push("A");
paths.push(complete_path.join(""));
} else {
for (i, &step) in remaining_steps.iter().enumerate() {
let mut next_path = current_path.clone();
next_path.push(step);
let mut next_steps = remaining_steps.clone();
next_steps.remove(i);
stack.push((next_path, next_steps));
}
}
}
paths.retain(|path| is_valid_path(path, start, layout));
if dx == 0 && dy == 0 {
paths.push("A".to_string());
}
if robot_count > 0 {
return paths
.iter()
.map(|path| {
let path_with_a = format!("A{}", path);
path_with_a
.chars()
.tuple_windows()
.map(|(a, b)| complexity(a, b, robot_count))
.sum::<u64>()
})
.min()
.expect("Problem finding min");
}
paths
.iter()
.map(|path| path.len() as u64)
.min()
.expect("Problem finding min")
}
fn is_valid_path(path: &str, start: Pos, layout: &HashMap<char, Pos>) -> bool {
let mut current_pos = start;
for c in path.chars() {
current_pos = match c {
'^' => Pos(current_pos.0, current_pos.1 - 1),
'v' => Pos(current_pos.0, current_pos.1 + 1),
'<' => Pos(current_pos.0 - 1, current_pos.1),
'>' => Pos(current_pos.0 + 1, current_pos.1),
_ => current_pos,
};
if !layout.values().any(|&pos| pos == current_pos) {
return false;
}
}
true
}
fn calculate_complexity_sum(input: &str, robot_count: i32) -> u64 {
input
.lines()
.map(|line| {
let num: u64 = line.chars().take(3).collect::<String>().parse().unwrap();
let seq = format!("A{}", line);
let mut complexity_sum = 0;
for (a, b) in seq.chars().tuple_windows() {
complexity_sum += complexity(a, b, robot_count);
}
complexity_sum * num
})
.sum()
}
pub fn part_one(input: &str) -> Option<usize> {
let total_complexity = calculate_complexity_sum(input, 3);
Some(total_complexity as usize)
}
pub fn part_two(input: &str) -> Option<usize> {
let total_complexity = calculate_complexity_sum(input, 26);
Some(total_complexity as usize)
}
#[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(126384));
}
#[test]
fn test_part_two() {
let result = part_two(&advent_of_code::template::read_file("examples", DAY));
assert_eq!(result, Some(154115708116294));
}
}