mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
136 lines
3.3 KiB
Rust
136 lines
3.3 KiB
Rust
use miette::{Diagnostic, Result};
|
|
use std::str::FromStr;
|
|
use thiserror::Error;
|
|
|
|
enum Direction {
|
|
Right, // (1, 0)
|
|
Left, // (-1, 0)
|
|
Up, // (0, -1)
|
|
Down, // (0, 1)
|
|
UpRight, // (1, -1)
|
|
UpLeft, // (-1, -1)
|
|
DownRight, // (1, 1)
|
|
DownLeft, // (-1, 1)
|
|
}
|
|
|
|
impl Direction {
|
|
const fn get_vector(&self) -> (i32, i32) {
|
|
match self {
|
|
Direction::Right => (1, 0),
|
|
Direction::Left => (-1, 0),
|
|
Direction::Up => (0, -1),
|
|
Direction::Down => (0, 1),
|
|
Direction::UpRight => (1, -1),
|
|
Direction::UpLeft => (-1, -1),
|
|
Direction::DownRight => (1, 1),
|
|
Direction::DownLeft => (-1, 1),
|
|
}
|
|
}
|
|
|
|
const fn all_directions() -> [Direction; 8] {
|
|
[
|
|
Direction::Right,
|
|
Direction::Left,
|
|
Direction::Up,
|
|
Direction::Down,
|
|
Direction::UpRight,
|
|
Direction::UpLeft,
|
|
Direction::DownRight,
|
|
Direction::DownLeft,
|
|
]
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Error, Diagnostic)]
|
|
enum GridError {
|
|
#[error("Error parsing")]
|
|
ParseError,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
struct Grid {
|
|
data: Vec<Vec<char>>,
|
|
rows: usize,
|
|
cols: usize,
|
|
}
|
|
|
|
impl Grid {
|
|
fn check_direction(&self, row: i32, col: i32, direction: &Direction, word: &str) -> bool {
|
|
let (dx, dy) = direction.get_vector();
|
|
word.chars().enumerate().all(|(idx, char)| {
|
|
let new_row = row + dy * idx as i32;
|
|
let new_col = col + dx * idx as i32;
|
|
self.is_valid_position(new_row, new_col)
|
|
&& self.data[new_row as usize][new_col as usize] == char
|
|
})
|
|
}
|
|
|
|
fn is_valid_position(&self, row: i32, col: i32) -> bool {
|
|
row >= 0 && row < self.rows as i32 && col >= 0 && col < self.cols as i32
|
|
}
|
|
|
|
fn count_word(&self, word: &str) -> usize {
|
|
(0..self.rows)
|
|
.flat_map(|row| {
|
|
(0..self.cols).flat_map(move |col| {
|
|
Direction::all_directions()
|
|
.into_iter()
|
|
.filter(move |direction| {
|
|
self.check_direction(row as i32, col as i32, direction, word)
|
|
})
|
|
})
|
|
})
|
|
.count()
|
|
}
|
|
}
|
|
|
|
impl FromStr for Grid {
|
|
type Err = GridError;
|
|
fn from_str(s: &str) -> std::result::Result<Self, Self::Err> {
|
|
let data = s
|
|
.lines()
|
|
.map(|line| line.chars().collect::<Vec<_>>())
|
|
.collect::<Vec<_>>();
|
|
|
|
let rows = data.len();
|
|
if rows == 0 {
|
|
return Err(GridError::ParseError);
|
|
}
|
|
let cols = data[0].len();
|
|
|
|
if data.iter().any(|row| row.len() != cols) {
|
|
return Err(GridError::ParseError);
|
|
}
|
|
|
|
Ok(Grid { data, rows, cols })
|
|
}
|
|
}
|
|
|
|
#[tracing::instrument]
|
|
pub fn process(input: &str) -> Result<usize> {
|
|
let grid = Grid::from_str(input)?;
|
|
Ok(grid.count_word("XMAS"))
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_process() -> Result<()> {
|
|
let input = "MMMSXXMASM
|
|
MSAMXMSMSA
|
|
AMXSXMAAMM
|
|
MSAMASMSMX
|
|
XMASAMXAMM
|
|
XXAMMXXAMA
|
|
SMSMSASXSS
|
|
SAXAMASAAA
|
|
MAMMMXMMMM
|
|
MXMXAXMASX";
|
|
let result = 18;
|
|
assert_eq!(process(input)?, result);
|
|
Ok(())
|
|
}
|
|
}
|