mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Implement 2023 day 17 part 1
This commit is contained in:
@@ -323,6 +323,18 @@ impl<T: AsRef<[u8]>> Index<usize> for Grid<T> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: AsRef<[u8]>> Index<(usize, usize)> for Grid<T> {
|
||||
type Output = u8;
|
||||
|
||||
fn index(&self, (y, x): (usize, usize)) -> &Self::Output {
|
||||
debug_assert!(y < self.height());
|
||||
debug_assert!(x < self.width());
|
||||
|
||||
let offset = self.width * y + x;
|
||||
&self.data.as_ref()[offset]
|
||||
}
|
||||
}
|
||||
|
||||
impl<T: AsRef<[u8]>> Display for Grid<T> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
write!(f, "{}", String::from_utf8_lossy(self.data.as_ref()))
|
||||
@@ -351,3 +363,21 @@ impl<T: AsMut<[u8]> + AsRef<[u8]>> IndexMut<usize> for Grid<T> {
|
||||
&mut self.data.as_mut()[offset..(offset + width)]
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
|
||||
pub enum Direction {
|
||||
Up = 0,
|
||||
Left = 1,
|
||||
Down = 2,
|
||||
Right = 3,
|
||||
}
|
||||
|
||||
impl Direction {
|
||||
pub fn bit(self) -> u8 {
|
||||
1 << self as u8
|
||||
}
|
||||
|
||||
pub fn is_vertical(self) -> bool {
|
||||
matches!(self, Direction::Down | Direction::Up)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,19 +1,6 @@
|
||||
use crate::common::Direction;
|
||||
use crate::common::Grid;
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
enum Direction {
|
||||
Up = 0,
|
||||
Left = 1,
|
||||
Down = 2,
|
||||
Right = 3,
|
||||
}
|
||||
|
||||
impl Direction {
|
||||
fn bit(self) -> u8 {
|
||||
1 << self as u8
|
||||
}
|
||||
}
|
||||
|
||||
fn compute_energized(
|
||||
map: &Grid<&[u8]>,
|
||||
state: &mut Grid<Vec<u8>>,
|
||||
@@ -22,7 +9,7 @@ fn compute_energized(
|
||||
let mut energized = todo.len() as u32;
|
||||
|
||||
while let Some((dir, x, y)) = todo.pop() {
|
||||
let mut enqueue = |dir: Direction, x: usize, y| {
|
||||
let mut enqueue = |dir: Direction, x: usize, y: usize| {
|
||||
let state = &mut state[y][x];
|
||||
if state == &0 {
|
||||
energized += 1;
|
||||
@@ -112,7 +99,7 @@ pub fn part2(input: &[u8]) -> anyhow::Result<String> {
|
||||
let mut state = Grid::zeroed(map.width(), map.height());
|
||||
let mut todo = Vec::new();
|
||||
|
||||
let mut helper = |dir: Direction, x, y| {
|
||||
let mut helper = |dir: Direction, x: usize, y: usize| {
|
||||
todo.push((dir, x, y));
|
||||
reset_state(&mut state);
|
||||
state[y][x] = dir.bit();
|
||||
|
||||
@@ -1,7 +1,168 @@
|
||||
pub fn part1(_input: &[u8]) -> anyhow::Result<String> {
|
||||
anyhow::bail!("Not implemented")
|
||||
use std::cmp;
|
||||
use std::collections::hash_map::Entry;
|
||||
use std::collections::BinaryHeap;
|
||||
use std::collections::HashMap;
|
||||
|
||||
use crate::common::Direction;
|
||||
use crate::common::Grid;
|
||||
|
||||
#[derive(PartialEq, Eq)]
|
||||
struct State {
|
||||
x: usize,
|
||||
y: usize,
|
||||
dir: Direction,
|
||||
heat_loss: u32,
|
||||
estimate: u32,
|
||||
}
|
||||
|
||||
impl Ord for State {
|
||||
fn cmp(&self, other: &Self) -> cmp::Ordering {
|
||||
// N.B. estimate and heat loss are compared in reverse for heap purposes, since BinaryHeap is a max heap.
|
||||
other
|
||||
.estimate
|
||||
.cmp(&self.estimate)
|
||||
.then_with(|| other.heat_loss.cmp(&self.heat_loss))
|
||||
.then_with(|| self.x.cmp(&other.x))
|
||||
.then_with(|| self.y.cmp(&other.y))
|
||||
.then_with(|| self.dir.cmp(&other.dir))
|
||||
}
|
||||
}
|
||||
|
||||
impl PartialOrd for State {
|
||||
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
|
||||
Some(self.cmp(other))
|
||||
}
|
||||
}
|
||||
|
||||
pub fn part1(input: &[u8]) -> anyhow::Result<String> {
|
||||
let map = Grid::new(input)?;
|
||||
let mut visited = HashMap::new();
|
||||
let width = map.width();
|
||||
let height = map.height();
|
||||
let mut todo = BinaryHeap::new();
|
||||
todo.push(State {
|
||||
x: 0,
|
||||
y: 0,
|
||||
dir: Direction::Right,
|
||||
heat_loss: 0,
|
||||
estimate: (width + height - 2) as u32,
|
||||
});
|
||||
todo.push(State {
|
||||
x: 0,
|
||||
y: 0,
|
||||
dir: Direction::Down,
|
||||
heat_loss: 0,
|
||||
estimate: (width + height - 2) as u32,
|
||||
});
|
||||
visited.insert((0usize, 0usize, true), 0u32);
|
||||
visited.insert((0usize, 0usize, false), 0u32);
|
||||
|
||||
while let Some(State {
|
||||
x,
|
||||
y,
|
||||
dir,
|
||||
heat_loss,
|
||||
..
|
||||
}) = todo.pop()
|
||||
{
|
||||
if x == map.width() - 1 && y == map.height() - 1 {
|
||||
return Ok(heat_loss.to_string());
|
||||
} else if visited[&(x, y, dir.is_vertical())] < heat_loss {
|
||||
continue;
|
||||
}
|
||||
|
||||
let next_is_vertical = !dir.is_vertical();
|
||||
let mut new_loss = heat_loss;
|
||||
let mut enqueue = |x, y, heat_loss| {
|
||||
match visited.entry((x, y, next_is_vertical)) {
|
||||
Entry::Occupied(mut entry) => {
|
||||
if entry.get() <= &heat_loss {
|
||||
return;
|
||||
} else {
|
||||
entry.insert(heat_loss);
|
||||
}
|
||||
}
|
||||
Entry::Vacant(entry) => {
|
||||
entry.insert(heat_loss);
|
||||
}
|
||||
}
|
||||
let estimate = (width + height - 2 - x - y) as u32 + heat_loss;
|
||||
|
||||
if next_is_vertical {
|
||||
todo.push(State {
|
||||
x,
|
||||
y,
|
||||
heat_loss,
|
||||
dir: Direction::Up,
|
||||
estimate,
|
||||
});
|
||||
todo.push(State {
|
||||
x,
|
||||
y,
|
||||
heat_loss,
|
||||
dir: Direction::Down,
|
||||
estimate,
|
||||
});
|
||||
} else {
|
||||
todo.push(State {
|
||||
x,
|
||||
y,
|
||||
heat_loss,
|
||||
dir: Direction::Left,
|
||||
estimate,
|
||||
});
|
||||
todo.push(State {
|
||||
x,
|
||||
y,
|
||||
heat_loss,
|
||||
dir: Direction::Right,
|
||||
estimate,
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
match dir {
|
||||
Direction::Up => {
|
||||
for y in (0..y).rev().take(3) {
|
||||
new_loss += u32::from(map[(y, x)] - b'0');
|
||||
enqueue(x, y, new_loss);
|
||||
}
|
||||
}
|
||||
Direction::Left => {
|
||||
for x in (0..x).rev().take(3) {
|
||||
new_loss += u32::from(map[(y, x)] - b'0');
|
||||
enqueue(x, y, new_loss);
|
||||
}
|
||||
}
|
||||
Direction::Down => {
|
||||
for y in ((y + 1)..map.height()).take(3) {
|
||||
new_loss += u32::from(map[(y, x)] - b'0');
|
||||
enqueue(x, y, new_loss);
|
||||
}
|
||||
}
|
||||
Direction::Right => {
|
||||
for x in ((x + 1)..map.width()).take(3) {
|
||||
new_loss += u32::from(map[(y, x)] - b'0');
|
||||
enqueue(x, y, new_loss);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
anyhow::bail!("Did not find a solution")
|
||||
}
|
||||
|
||||
pub fn part2(_input: &[u8]) -> anyhow::Result<String> {
|
||||
anyhow::bail!("Not implemented")
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
const SAMPLE: &[u8] = include_bytes!("samples/17.txt");
|
||||
|
||||
#[test]
|
||||
fn sample_part1() {
|
||||
assert_eq!("102", part1(SAMPLE).unwrap());
|
||||
}
|
||||
}
|
||||
|
||||
13
2023/src/samples/17.txt
Normal file
13
2023/src/samples/17.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
2413432311323
|
||||
3215453535623
|
||||
3255245654254
|
||||
3446585845452
|
||||
4546657867536
|
||||
1438598798454
|
||||
4457876987766
|
||||
3637877979653
|
||||
4654967986887
|
||||
4564679986453
|
||||
1224686865563
|
||||
2546548887735
|
||||
4322674655533
|
||||
Reference in New Issue
Block a user