generated from fspoettel/advent-of-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path06.rs
113 lines (84 loc) · 2.71 KB
/
06.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
advent_of_code::solution!(6);
use advent_of_code::majcn::direction::*;
use advent_of_code::maneatingape::grid::*;
use advent_of_code::maneatingape::point::*;
struct Block {}
impl Block {
const WALL: u8 = b'#';
const GUARD: u8 = b'^';
}
fn parse_data(input: &str) -> Grid<u8> {
Grid::parse(input)
}
fn visited_positions(grid: &Grid<u8>, start_position: Point) -> Vec<Point> {
let mut result = vec![];
let mut position = start_position;
let mut direction = UP;
let mut visit = grid.same_size_with(false);
loop {
if !visit[position] {
result.push(position);
};
visit[position] = true;
let next_position = position + direction;
if !grid.contains(next_position) {
return result;
}
if grid[next_position] == Block::WALL {
direction = direction.clockwise();
} else {
position = next_position;
}
}
}
pub fn part_one(input: &str) -> Option<u32> {
let grid = parse_data(input);
let start_position = grid.find(Block::GUARD).unwrap();
let result = visited_positions(&grid, start_position).len() as u32;
Some(result)
}
pub fn part_two(input: &str) -> Option<u32> {
let grid = parse_data(input);
let start_position = grid.find(Block::GUARD).unwrap();
let result = visited_positions(&grid, start_position)
.into_iter()
.filter_map(|new_obstruction| {
let mut visit = grid.same_size_with([false, false, false, false]);
let mut position = start_position;
let mut direction = UP;
loop {
let direction_index = direction_to_index(direction);
if visit[position][direction_index] {
break Some(true);
}
visit[position][direction_index] = true;
let next_position = position + direction;
if !grid.contains(next_position) {
break None;
}
if new_obstruction == next_position || grid[next_position] == Block::WALL {
direction = direction.clockwise();
} else {
position = next_position;
}
}
})
.count() as u32;
Some(result)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_part_one() {
let input = advent_of_code::template::read_file("examples", DAY);
let result = part_one(&input);
assert_eq!(result, Some(41));
}
#[test]
fn test_part_two() {
let input = advent_of_code::template::read_file("examples", DAY);
let result = part_two(&input);
assert_eq!(result, Some(6));
}
}