Day 9 solution with a grid
This commit is contained in:
parent
1c4dabd1e6
commit
96bb390951
2099
inputs/input.txt
2099
inputs/input.txt
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,8 @@
|
|||
30373
|
||||
25512
|
||||
65332
|
||||
33549
|
||||
35390
|
||||
R 4
|
||||
U 4
|
||||
L 3
|
||||
D 1
|
||||
R 4
|
||||
D 1
|
||||
L 5
|
||||
R 2
|
||||
|
|
296
src/main.rs
296
src/main.rs
|
@ -1,5 +1,7 @@
|
|||
#![feature(byte_slice_trim_ascii)]
|
||||
#![feature(test)]
|
||||
use std::time::Duration;
|
||||
|
||||
extern crate test;
|
||||
|
||||
const INPUTS: [&[u8]; 2] = [
|
||||
|
@ -7,79 +9,265 @@ const INPUTS: [&[u8]; 2] = [
|
|||
include_bytes!("../inputs/input.txt"),
|
||||
];
|
||||
|
||||
fn parse<const M: usize, const N: usize>(input: &[u8]) -> [[u8; N]; M] {
|
||||
let mut out = [[0; N]; M];
|
||||
input
|
||||
.trim_ascii()
|
||||
.split(|&c| c == b'\n')
|
||||
.enumerate()
|
||||
.for_each(|(i, line)| {
|
||||
line.iter().enumerate().for_each(|(j, &v)| {
|
||||
out[i][j] = v;
|
||||
})
|
||||
});
|
||||
#[derive(Debug)]
|
||||
enum Move {
|
||||
R(usize),
|
||||
L(usize),
|
||||
U(usize),
|
||||
D(usize),
|
||||
}
|
||||
|
||||
out
|
||||
type Knot = u16;
|
||||
|
||||
const EMPTY: Knot = 0;
|
||||
const POUND: Knot = 1 << 1;
|
||||
const HEAD: Knot = 1 << 2;
|
||||
const ONE: Knot = 1 << 3;
|
||||
const TWO: Knot = 1 << 4;
|
||||
const THREE: Knot = 1 << 5;
|
||||
const FOUR: Knot = 1 << 6;
|
||||
const FIVE: Knot = 1 << 7;
|
||||
const SIX: Knot = 1 << 8;
|
||||
const SEVEN: Knot = 1 << 9;
|
||||
const EIGHT: Knot = 1 << 10;
|
||||
const NINE: Knot = 1 << 11;
|
||||
|
||||
#[inline]
|
||||
const fn knot_from_idx(i: usize) -> Knot {
|
||||
match i {
|
||||
0 => ONE,
|
||||
1 => TWO,
|
||||
2 => THREE,
|
||||
3 => FOUR,
|
||||
4 => FIVE,
|
||||
5 => SIX,
|
||||
6 => SEVEN,
|
||||
7 => EIGHT,
|
||||
8 => NINE,
|
||||
_ => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
fn contains_knot(k1: &Knot, k2: Knot) -> bool {
|
||||
k1 & k2 > 0
|
||||
}
|
||||
|
||||
fn set(grid: &mut [[Knot; GRIDX]; GRIDY], (ix, iy): (usize, usize), knot: Knot) {
|
||||
match grid[iy][ix] {
|
||||
EMPTY | POUND | HEAD => grid[iy][ix] = knot,
|
||||
_ => grid[iy][ix] |= knot,
|
||||
}
|
||||
}
|
||||
|
||||
fn unset(grid: &mut [[Knot; GRIDX]; GRIDY], (ix, iy): (usize, usize), knot: Knot) {
|
||||
grid[iy][ix] &= !knot;
|
||||
}
|
||||
|
||||
fn parse(input: &[u8]) -> impl Iterator<Item = Move> + '_ {
|
||||
input.trim_ascii().split(|&c| c == b'\n').map(|line| {
|
||||
let (a, b) = line.split_at(1);
|
||||
|
||||
let b = b
|
||||
.iter()
|
||||
.skip(1)
|
||||
.fold(0, |a, x| (a * 10) + (x - b'0') as usize);
|
||||
|
||||
match &a {
|
||||
[b'R'] => Move::R(b),
|
||||
[b'L'] => Move::L(b),
|
||||
[b'U'] => Move::U(b),
|
||||
[b'D'] => Move::D(b),
|
||||
|
||||
_ => unreachable!(),
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let output = parse::<5, 5>(INPUTS[0]);
|
||||
let score = solution::<5, 5>(output);
|
||||
println!("{}", score);
|
||||
|
||||
let output = parse::<99, 99>(INPUTS[1]);
|
||||
let score = solution::<99, 99>(output);
|
||||
println!("{}", score);
|
||||
for input in INPUTS.iter() {
|
||||
let output = parse(input);
|
||||
let score = solution(output);
|
||||
println!("{}", score);
|
||||
}
|
||||
}
|
||||
|
||||
fn solution<const M: usize, const N: usize>(input: [[u8; N]; M]) -> usize {
|
||||
let mut answer = 0;
|
||||
const GRIDX: usize = 300;
|
||||
const GRIDY: usize = 350;
|
||||
|
||||
for j in 0..N {
|
||||
for i in 0..M {
|
||||
let th = input[i][j];
|
||||
fn solution(input: impl Iterator<Item = Move>) -> usize {
|
||||
let mut grid = [[EMPTY; GRIDX]; GRIDY];
|
||||
let sx = 50;
|
||||
let sy = 300;
|
||||
grid[sy][sx] = HEAD | ONE | TWO | THREE | FOUR | FIVE | SIX | SEVEN | EIGHT | NINE;
|
||||
let (mut sxh, mut syh) = (sx, sy);
|
||||
let (mut sxt, mut syt) = (sx, sy);
|
||||
|
||||
let mut counts = [0, 0, 0, 0];
|
||||
for &v in input[i][0..j].iter().rev() {
|
||||
counts[0] += 1;
|
||||
if v >= th {
|
||||
break;
|
||||
}
|
||||
}
|
||||
let mut tmoves = [[false; GRIDX]; GRIDY];
|
||||
|
||||
for &v in &input[i][j + 1..N] {
|
||||
counts[1] += 1;
|
||||
if v >= th {
|
||||
break;
|
||||
}
|
||||
}
|
||||
for mmove in input {
|
||||
unset(&mut grid, (sxh, syh), HEAD);
|
||||
let (steps, (dsxh, dsyh)): (usize, (i32, i32)) = match mmove {
|
||||
Move::R(v) => (v, (1, 0)),
|
||||
Move::L(v) => (v, (-1, 0)),
|
||||
Move::U(v) => (v, (0, -1)),
|
||||
Move::D(v) => (v, (0, 1)),
|
||||
};
|
||||
for _ in 0..steps {
|
||||
unset(&mut grid, (sxh, syh), HEAD);
|
||||
sxh = (sxh as i32 + dsxh) as usize;
|
||||
syh = (syh as i32 + dsyh) as usize;
|
||||
set(&mut grid, (sxh, syh), HEAD);
|
||||
|
||||
for row in input[0..i].iter().rev() {
|
||||
counts[2] += 1;
|
||||
if row[j] >= th {
|
||||
break;
|
||||
}
|
||||
}
|
||||
(sxt, syt) = move_tail((sxh, syh), (sxt, syt), &mut grid, knot_from_idx(0));
|
||||
|
||||
for row in &input[i + 1..M] {
|
||||
counts[3] += 1;
|
||||
if row[j] >= th {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
answer = std::cmp::max(answer, counts[0] * counts[1] * counts[2] * counts[3]);
|
||||
tmoves[syt][sxt] = true;
|
||||
}
|
||||
}
|
||||
tmoves
|
||||
.into_iter()
|
||||
.flat_map(|c| c.into_iter().map(|a| a as usize))
|
||||
.sum()
|
||||
}
|
||||
|
||||
answer
|
||||
fn print_grid(grid: &[[Knot; GRIDX]; GRIDY]) {
|
||||
print!("{esc}[2J{esc}[1;1H", esc = 27 as char);
|
||||
|
||||
let mut out = String::new();
|
||||
|
||||
for row in grid.iter() {
|
||||
out.push_str(&row.iter().map(print_knot).collect::<String>());
|
||||
out.push('\n');
|
||||
}
|
||||
|
||||
println!("{}", out);
|
||||
|
||||
std::thread::sleep(Duration::from_millis(10));
|
||||
}
|
||||
|
||||
fn print_knot(c: &Knot) -> char {
|
||||
match c {
|
||||
&HEAD => 'H',
|
||||
&ONE => '1',
|
||||
&TWO => '2',
|
||||
&THREE => '3',
|
||||
&FOUR => '4',
|
||||
&FIVE => '5',
|
||||
&SIX => '6',
|
||||
&SEVEN => '7',
|
||||
&EIGHT => '8',
|
||||
&NINE => '9',
|
||||
v if contains_knot(v, HEAD) => 'H',
|
||||
v if contains_knot(v, NINE) => '9',
|
||||
v if contains_knot(v, EIGHT) => '8',
|
||||
v if contains_knot(v, SEVEN) => '7',
|
||||
v if contains_knot(v, SIX) => '6',
|
||||
v if contains_knot(v, FIVE) => '5',
|
||||
v if contains_knot(v, FOUR) => '4',
|
||||
v if contains_knot(v, THREE) => '3',
|
||||
v if contains_knot(v, TWO) => '2',
|
||||
v if contains_knot(v, ONE) => '1',
|
||||
&POUND => '#',
|
||||
_ => '.',
|
||||
}
|
||||
}
|
||||
|
||||
#[inline]
|
||||
const fn knot_head(c: Knot) -> Knot {
|
||||
match c {
|
||||
EMPTY | HEAD | POUND => unreachable!(),
|
||||
ONE => HEAD,
|
||||
TWO => ONE,
|
||||
THREE => TWO,
|
||||
FOUR => THREE,
|
||||
FIVE => FOUR,
|
||||
SIX => FIVE,
|
||||
SEVEN => SIX,
|
||||
EIGHT => SEVEN,
|
||||
NINE => EIGHT,
|
||||
_ => unreachable!(),
|
||||
}
|
||||
}
|
||||
|
||||
fn move_tail(
|
||||
(sxh, syh): (usize, usize),
|
||||
(sxt, syt): (usize, usize),
|
||||
grid: &mut [[Knot; GRIDX]; GRIDY],
|
||||
c: Knot,
|
||||
) -> (usize, usize) {
|
||||
if sxh == sxt && syh == syt {
|
||||
return (sxt, syt);
|
||||
}
|
||||
|
||||
// Present at a diagonal? Return
|
||||
// Attached to Head? Return
|
||||
if [
|
||||
(-1, -1),
|
||||
(0, -1),
|
||||
(1, -1),
|
||||
(-1, 0),
|
||||
(1, 0),
|
||||
(-1, 1),
|
||||
(0, 1),
|
||||
(1, 1),
|
||||
]
|
||||
.iter()
|
||||
.map(|(a, b)| grid[(syt as i32 + a) as usize][(sxt as i32 + b) as usize])
|
||||
.any(|x| contains_knot(&x, knot_head(c)))
|
||||
{
|
||||
return (sxt, syt);
|
||||
}
|
||||
|
||||
match ((sxh, syh), (sxt, syt)) {
|
||||
((sxh, syh), (sxt, syt)) if syh == syt => {
|
||||
let dx: i32 = if sxh < sxt { -1 } else { 1 };
|
||||
|
||||
unset(grid, (sxt, syt), c);
|
||||
set(grid, ((sxt as i32 + dx) as usize, syt), c);
|
||||
|
||||
((sxt as i32 + dx) as usize, syt)
|
||||
}
|
||||
|
||||
((sxh, syh), (sxt, syt)) if sxh == sxt => {
|
||||
let dx: i32 = if syh < syt { -1 } else { 1 };
|
||||
unset(grid, (sxt, syt), c);
|
||||
set(grid, (sxt, (syt as i32 + dx) as usize), c);
|
||||
(sxt, (syt as i32 + dx) as usize)
|
||||
}
|
||||
((sxh, syh), (sxt, syt)) if syh < syt && sxh > sxt => {
|
||||
unset(grid, (sxt, syt), c);
|
||||
set(grid, (sxt + 1, syt - 1), c);
|
||||
|
||||
(sxt + 1, syt - 1)
|
||||
}
|
||||
((sxh, syh), (sxt, syt)) if syh < syt && sxh <= sxt => {
|
||||
unset(grid, (sxt, syt), c);
|
||||
set(grid, (sxt - 1, syt - 1), c);
|
||||
|
||||
(sxt - 1, syt - 1)
|
||||
}
|
||||
((sxh, syh), (sxt, syt)) if syh >= syt && sxh > sxt => {
|
||||
unset(grid, (sxt, syt), c);
|
||||
set(grid, (sxt + 1, syt + 1), c);
|
||||
|
||||
(sxt + 1, syt + 1)
|
||||
}
|
||||
((sxh, syh), (sxt, syt)) if syh >= syt && sxh <= sxt => {
|
||||
unset(grid, (sxt, syt), c);
|
||||
set(grid, (sxt - 1, syt + 1), c);
|
||||
|
||||
(sxt - 1, syt + 1)
|
||||
}
|
||||
|
||||
_ => (0, 0),
|
||||
}
|
||||
}
|
||||
|
||||
#[bench]
|
||||
fn solution_bench(b: &mut test::Bencher) {
|
||||
let input = parse::<99, 99>(INPUTS[1]);
|
||||
b.iter(|| {
|
||||
let result = solution::<99, 99>(input);
|
||||
let input = parse(INPUTS[1]);
|
||||
let result = solution(input);
|
||||
test::black_box(result);
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user