mirror of
https://github.com/Noratrieb/advent-of-code.git
synced 2026-01-17 02:55:01 +01:00
faster
This commit is contained in:
parent
5add770572
commit
83367068ae
1 changed files with 274 additions and 0 deletions
|
|
@ -16,6 +16,8 @@ helper::define_variants! {
|
||||||
fast_parse => crate::part2_fast_parse;
|
fast_parse => crate::part2_fast_parse;
|
||||||
keep_vec => crate::part2_keep_vec;
|
keep_vec => crate::part2_keep_vec;
|
||||||
even_faster_parsing => crate::part2_even_faster_parsing;
|
even_faster_parsing => crate::part2_even_faster_parsing;
|
||||||
|
faster_compute => crate::part2_faster_compute;
|
||||||
|
add_unsafe => crate::part2_add_unsafe;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -456,6 +458,278 @@ fn part2_even_faster_parsing(input: &str) -> u64 {
|
||||||
count
|
count
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn part2_faster_compute(input: &str) -> u64 {
|
||||||
|
let mut levels: Vec<u64> = Vec::new();
|
||||||
|
|
||||||
|
let mut count = 0;
|
||||||
|
|
||||||
|
let mut input = input.as_bytes();
|
||||||
|
while let Some(end) = memchr::memchr(b'\n', input) {
|
||||||
|
let mut line = &input[..=end]; // include the newline so every digit has a terminator
|
||||||
|
|
||||||
|
fn parse_digit(input: &[u8]) -> (u64, &[u8]) {
|
||||||
|
assert!(input.len() > 1);
|
||||||
|
let first = input[0];
|
||||||
|
let second = input[1];
|
||||||
|
|
||||||
|
if second == b' ' || second == b'\n' {
|
||||||
|
((first - b'0') as u64, &input[1..])
|
||||||
|
} else {
|
||||||
|
(
|
||||||
|
(((first - b'0') * 10) + (second - b'0')) as u64,
|
||||||
|
&input[2..],
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut level;
|
||||||
|
(level, line) = parse_digit(line);
|
||||||
|
levels.push(level);
|
||||||
|
line = &line[1..]; // space or newline
|
||||||
|
|
||||||
|
while line.len() > 0 {
|
||||||
|
(level, line) = parse_digit(line);
|
||||||
|
levels.push(level);
|
||||||
|
line = &line[1..]; // space or newline
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate
|
||||||
|
|
||||||
|
const fn build_check_asc_desc() -> [bool; 12_800] {
|
||||||
|
let mut table = [false; 12_800];
|
||||||
|
let mut a = 0;
|
||||||
|
while a < 100 {
|
||||||
|
let mut b = 0;
|
||||||
|
while b < 100 {
|
||||||
|
let value = a < b && a + 3 >= b;
|
||||||
|
let idx = a * 128 + b;
|
||||||
|
table[idx] = value;
|
||||||
|
|
||||||
|
b += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
a += 1;
|
||||||
|
}
|
||||||
|
table
|
||||||
|
}
|
||||||
|
const ASC_DESC: [bool; 12_800] = build_check_asc_desc();
|
||||||
|
fn check_asc_desc(forwards: bool, smol: u64, big: u64) -> bool {
|
||||||
|
if forwards {
|
||||||
|
ASC_DESC[(smol as usize) * 128 + big as usize]
|
||||||
|
} else {
|
||||||
|
ASC_DESC[(big as usize) * 128 + smol as usize]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn check_direction<const FORWARDS: bool>(levels: &mut Vec<u64>) -> bool {
|
||||||
|
let mut unsafe_transitions_len = 0_usize;
|
||||||
|
let mut unsafe_transitions = [0_usize; 2];
|
||||||
|
|
||||||
|
for (i, ab) in levels.windows(2).enumerate() {
|
||||||
|
if !check_asc_desc(FORWARDS, ab[0], ab[1]) {
|
||||||
|
if unsafe_transitions_len >= 2 {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
unsafe_transitions[unsafe_transitions_len] = i;
|
||||||
|
unsafe_transitions_len += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
match unsafe_transitions_len {
|
||||||
|
0 => true,
|
||||||
|
1 => {
|
||||||
|
// 1 3 2 4 5
|
||||||
|
// ^unsafe transition, index 1
|
||||||
|
// either idx 1 needs to go, or idx 2 needs to go (in this case 1)
|
||||||
|
let trans = unsafe_transitions[0];
|
||||||
|
if trans == 0 || trans == (levels.len() - 2) {
|
||||||
|
// It's the first or last element.
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Let's see what happens if we drop the first element (3 in the example).
|
||||||
|
if check_asc_desc(FORWARDS, levels[trans - 1], levels[trans + 1]) {
|
||||||
|
// Dropping the first elem works!
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Let's see what happens if we drop the second element (2 in the example).
|
||||||
|
if check_asc_desc(FORWARDS, levels[trans], levels[trans + 2]) {
|
||||||
|
// Dropping the secnd elem works!
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
2 => {
|
||||||
|
// 1 5 3 4 5
|
||||||
|
// ^ ^ unsafe transitions, idx 0 and 1
|
||||||
|
// If the two transitions are not adjacent, there's no hope.
|
||||||
|
let (trans0, trans1) = (unsafe_transitions[0], unsafe_transitions[1]);
|
||||||
|
if trans0.abs_diff(trans1) != 1 {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Let's try dropping the middle one.
|
||||||
|
let min = trans0.min(trans1);
|
||||||
|
if check_asc_desc(FORWARDS, levels[min], levels[min + 2]) {
|
||||||
|
// Dropping it works!
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
_ => unreachable!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if check_direction::<true>(&mut levels) || check_direction::<false>(&mut levels) {
|
||||||
|
count += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
levels.clear();
|
||||||
|
input = &input[(end + 1)..];
|
||||||
|
}
|
||||||
|
|
||||||
|
count
|
||||||
|
}
|
||||||
|
|
||||||
|
fn part2_add_unsafe(input: &str) -> u64 {
|
||||||
|
let mut levels: Vec<u64> = Vec::new();
|
||||||
|
|
||||||
|
let mut count = 0;
|
||||||
|
|
||||||
|
let mut input = input.as_bytes();
|
||||||
|
while let Some(end) = memchr::memchr(b'\n', input) {
|
||||||
|
let mut line = &input[..=end]; // include the newline so every digit has a terminator
|
||||||
|
|
||||||
|
fn parse_digit(input: &[u8]) -> (u64, &[u8]) {
|
||||||
|
assert!(input.len() > 1);
|
||||||
|
let first = input[0];
|
||||||
|
let second = input[1];
|
||||||
|
|
||||||
|
if second == b' ' || second == b'\n' {
|
||||||
|
((first - b'0') as u64, &input[1..])
|
||||||
|
} else {
|
||||||
|
(
|
||||||
|
(((first - b'0') * 10) + (second - b'0')) as u64,
|
||||||
|
&input[2..],
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let mut level;
|
||||||
|
(level, line) = parse_digit(line);
|
||||||
|
levels.push(level);
|
||||||
|
line = &line[1..]; // space or newline
|
||||||
|
|
||||||
|
while line.len() > 0 {
|
||||||
|
(level, line) = parse_digit(line);
|
||||||
|
levels.push(level);
|
||||||
|
line = &line[1..]; // space or newline
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculate
|
||||||
|
|
||||||
|
const TABLE_SIZE: usize = 100 * 128 + 100;
|
||||||
|
const fn build_check_asc_desc() -> [bool; TABLE_SIZE] {
|
||||||
|
let mut table = [false; TABLE_SIZE];
|
||||||
|
let mut a = 0;
|
||||||
|
while a < 100 {
|
||||||
|
let mut b = 0;
|
||||||
|
while b < 100 {
|
||||||
|
let value = a < b && a + 3 >= b;
|
||||||
|
let idx = a * 128 + b;
|
||||||
|
table[idx] = value;
|
||||||
|
|
||||||
|
b += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
a += 1;
|
||||||
|
}
|
||||||
|
table
|
||||||
|
}
|
||||||
|
const ASC_DESC: [bool; TABLE_SIZE] = build_check_asc_desc();
|
||||||
|
fn check_asc_desc(forwards: bool, smol: u64, big: u64) -> bool {
|
||||||
|
// We use 128 instead of 100 so it can compile into a shl instead of mul.
|
||||||
|
if forwards {
|
||||||
|
unsafe { *ASC_DESC.get_unchecked((smol as usize) * 128 + big as usize) }
|
||||||
|
} else {
|
||||||
|
unsafe { *ASC_DESC.get_unchecked((big as usize) * 128 + smol as usize) }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn check_direction<const FORWARDS: bool>(levels: &mut Vec<u64>) -> bool {
|
||||||
|
let mut unsafe_transitions_len = 0_usize;
|
||||||
|
let mut unsafe_transitions = [0_usize; 2];
|
||||||
|
|
||||||
|
for (i, ab) in levels.windows(2).enumerate() {
|
||||||
|
if !check_asc_desc(FORWARDS, ab[0], ab[1]) {
|
||||||
|
if unsafe_transitions_len >= 2 {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
unsafe_transitions[unsafe_transitions_len] = i;
|
||||||
|
unsafe_transitions_len += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
match unsafe_transitions_len {
|
||||||
|
0 => true,
|
||||||
|
1 => {
|
||||||
|
// 1 3 2 4 5
|
||||||
|
// ^unsafe transition, index 1
|
||||||
|
// either idx 1 needs to go, or idx 2 needs to go (in this case 1)
|
||||||
|
let trans = unsafe_transitions[0];
|
||||||
|
if trans == 0 || trans == (levels.len() - 2) {
|
||||||
|
// It's the first or last element.
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Let's see what happens if we drop the first element (3 in the example).
|
||||||
|
if check_asc_desc(FORWARDS, levels[trans - 1], levels[trans + 1]) {
|
||||||
|
// Dropping the first elem works!
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Let's see what happens if we drop the second element (2 in the example).
|
||||||
|
if check_asc_desc(FORWARDS, levels[trans], levels[trans + 2]) {
|
||||||
|
// Dropping the secnd elem works!
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
2 => {
|
||||||
|
// 1 5 3 4 5
|
||||||
|
// ^ ^ unsafe transitions, idx 0 and 1
|
||||||
|
// If the two transitions are not adjacent, there's no hope.
|
||||||
|
let (trans0, trans1) = (unsafe_transitions[0], unsafe_transitions[1]);
|
||||||
|
if trans0.abs_diff(trans1) != 1 {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Let's try dropping the middle one.
|
||||||
|
let min = trans0.min(trans1);
|
||||||
|
if check_asc_desc(FORWARDS, levels[min], levels[min + 2]) {
|
||||||
|
// Dropping it works!
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
false
|
||||||
|
}
|
||||||
|
_ => unreachable!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if check_direction::<true>(&mut levels) || check_direction::<false>(&mut levels) {
|
||||||
|
count += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
levels.clear();
|
||||||
|
input = &input[(end + 1)..];
|
||||||
|
}
|
||||||
|
|
||||||
|
count
|
||||||
|
}
|
||||||
|
|
||||||
helper::tests! {
|
helper::tests! {
|
||||||
day02 Day02;
|
day02 Day02;
|
||||||
part1 {
|
part1 {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue