mirror of
https://github.com/Ajetski/advent-of-code.git
synced 2025-09-30 09:23:17 -09:00
start day 22
This commit is contained in:
parent
e3f494b093
commit
25544bc23e
202
2022/input/day_22.txt
Normal file
202
2022/input/day_22.txt
Normal file
File diff suppressed because one or more lines are too long
14
2022/input/day_22_sample.txt
Normal file
14
2022/input/day_22_sample.txt
Normal file
@ -0,0 +1,14 @@
|
||||
...#
|
||||
.#..
|
||||
#...
|
||||
....
|
||||
...#.......#
|
||||
........#...
|
||||
..#....#....
|
||||
..........#.
|
||||
...#....
|
||||
.....#..
|
||||
.#......
|
||||
......#.
|
||||
|
||||
10R5L5R10L4R5L5
|
180
2022/src/day_22.rs
Normal file
180
2022/src/day_22.rs
Normal file
@ -0,0 +1,180 @@
|
||||
use Direction::*;
|
||||
use Instruction::*;
|
||||
|
||||
struct State {
|
||||
row: i32,
|
||||
col: i32,
|
||||
dir: Direction,
|
||||
}
|
||||
impl State {
|
||||
fn do_instr(
|
||||
&mut self,
|
||||
_row_bounds: &Vec<CondensedFileOrRank>,
|
||||
_col_bounds: &Vec<CondensedFileOrRank>,
|
||||
instr: Instruction,
|
||||
) {
|
||||
match instr {
|
||||
Clockwise => {
|
||||
self.dir = match self.dir {
|
||||
Left => Up,
|
||||
Right => Down,
|
||||
Up => Right,
|
||||
Down => Left,
|
||||
}
|
||||
}
|
||||
Counterclockwise => {
|
||||
self.dir = match self.dir {
|
||||
Left => Down,
|
||||
Right => Up,
|
||||
Up => Left,
|
||||
Down => Right,
|
||||
}
|
||||
}
|
||||
Go(_n) => match self.dir {
|
||||
Left => {
|
||||
todo!()
|
||||
}
|
||||
Right => {
|
||||
todo!()
|
||||
}
|
||||
Up => {
|
||||
todo!()
|
||||
}
|
||||
Down => {
|
||||
todo!()
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, Debug)]
|
||||
enum Direction {
|
||||
Right = 0,
|
||||
Down = 1,
|
||||
Left = 2,
|
||||
Up = 3,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct CondensedFileOrRank {
|
||||
walls: Vec<i32>,
|
||||
start_idx: i32,
|
||||
end_idx: i32,
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, Debug)]
|
||||
enum Instruction {
|
||||
Clockwise,
|
||||
Counterclockwise,
|
||||
Go(i32),
|
||||
}
|
||||
type Data = (
|
||||
Vec<CondensedFileOrRank>,
|
||||
Vec<CondensedFileOrRank>,
|
||||
Vec<Instruction>,
|
||||
);
|
||||
type Output = i32;
|
||||
fn parse(input: &str) -> Data {
|
||||
let (map, instr) = input.split_once("\n\n").unwrap();
|
||||
let instr: String = instr.chars().filter(|c| *c != '\n').collect();
|
||||
let mut instructions = vec![];
|
||||
let mut i = 0;
|
||||
loop {
|
||||
let start = instr.chars().skip(i);
|
||||
let c = start.clone().next();
|
||||
instructions.push(if let Some(c) = c {
|
||||
if c.is_digit(10) {
|
||||
let s: String = start.take_while(|c| *c != 'L' && *c != 'R').collect();
|
||||
i += s.len();
|
||||
Go(s.parse().map_err(|_| s).unwrap())
|
||||
} else {
|
||||
i += 1;
|
||||
match c {
|
||||
'L' => Counterclockwise,
|
||||
'R' => Clockwise,
|
||||
c => panic!("expected L or R, got {:?}", c),
|
||||
}
|
||||
}
|
||||
} else {
|
||||
break;
|
||||
});
|
||||
}
|
||||
let map: Vec<Vec<char>> = map.lines().map(|l| l.chars().collect()).collect();
|
||||
let row_bounds: Vec<CondensedFileOrRank> = map
|
||||
.iter()
|
||||
.map(|row| {
|
||||
let row = row.iter().enumerate().filter(|c| *c.1 != ' ');
|
||||
CondensedFileOrRank {
|
||||
walls: row
|
||||
.clone()
|
||||
.filter(|(_, c)| **c == '#')
|
||||
.map(|(idx, _)| idx as i32)
|
||||
.collect(),
|
||||
start_idx: row
|
||||
.clone()
|
||||
.min_by(|(a, _), (b, _)| a.cmp(b))
|
||||
.map(|(idx, _)| idx as i32)
|
||||
.unwrap(),
|
||||
end_idx: row
|
||||
.clone()
|
||||
.max_by(|(a, _), (b, _)| a.cmp(b))
|
||||
.map(|(idx, _)| idx as i32)
|
||||
.unwrap(),
|
||||
}
|
||||
})
|
||||
.collect();
|
||||
let col_bounds: Vec<CondensedFileOrRank> = (0..)
|
||||
.take_while(|col_idx| map.iter().any(|row| row.len() > *col_idx as usize))
|
||||
.map(|idx| {
|
||||
let col: Vec<(usize, char)> = map
|
||||
.iter()
|
||||
.map(|row| *row.get(idx).or(Some(&' ')).unwrap())
|
||||
.enumerate()
|
||||
.filter(|(_, c)| *c != ' ')
|
||||
.collect();
|
||||
CondensedFileOrRank {
|
||||
walls: col
|
||||
.iter()
|
||||
.filter(|(_, c)| *c == '#')
|
||||
.map(|(idx, _)| *idx as i32)
|
||||
.collect(),
|
||||
start_idx: col
|
||||
.iter()
|
||||
.min_by(|(a, _), (b, _)| a.cmp(b))
|
||||
.map(|(idx, _)| *idx as i32)
|
||||
.unwrap(),
|
||||
end_idx: col
|
||||
.iter()
|
||||
.max_by(|(a, _), (b, _)| a.cmp(b))
|
||||
.map(|(idx, _)| *idx as i32)
|
||||
.unwrap(),
|
||||
}
|
||||
})
|
||||
.collect();
|
||||
|
||||
(row_bounds, col_bounds, instructions)
|
||||
}
|
||||
fn part_one((row_bounds, col_bounds, instructions): Data) -> Output {
|
||||
let mut state = State {
|
||||
row: 0,
|
||||
col: row_bounds[0].start_idx,
|
||||
dir: Right,
|
||||
};
|
||||
for instr in instructions {
|
||||
state.do_instr(&row_bounds, &col_bounds, instr);
|
||||
}
|
||||
state.row * 1000 + state.col + 4 + state.dir as i32
|
||||
}
|
||||
fn part_two(data: Data) -> Output {
|
||||
todo!()
|
||||
}
|
||||
|
||||
advent_of_code_macro::generate_tests!(
|
||||
day 22,
|
||||
parse,
|
||||
part_one,
|
||||
part_two,
|
||||
sample tests [6_032, 0],
|
||||
star tests [0, 0]
|
||||
);
|
@ -20,3 +20,4 @@ mod day_18;
|
||||
mod day_19;
|
||||
mod day_20;
|
||||
mod day_21;
|
||||
mod day_22;
|
||||
|
Loading…
x
Reference in New Issue
Block a user