mirror of
https://github.com/Noratrieb/advent-of-code.git
synced 2026-01-17 02:55:01 +01:00
no lines
This commit is contained in:
parent
30af4cb9d1
commit
1115c68992
7 changed files with 93 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
||||||
input*.txt
|
input*.txt
|
||||||
|
target
|
||||||
1
2023/day1/.gitignore
vendored
1
2023/day1/.gitignore
vendored
|
|
@ -1 +0,0 @@
|
||||||
/target
|
|
||||||
|
|
@ -3,9 +3,6 @@ name = "day1"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
debug = 1
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ use std::mem::MaybeUninit;
|
||||||
|
|
||||||
mod branchless;
|
mod branchless;
|
||||||
mod naive;
|
mod naive;
|
||||||
|
mod no_lines;
|
||||||
mod zero_alloc;
|
mod zero_alloc;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
@ -22,6 +23,7 @@ fn main() {
|
||||||
"naive" => naive::part2(&input),
|
"naive" => naive::part2(&input),
|
||||||
"zero_alloc" => zero_alloc::part2(&input),
|
"zero_alloc" => zero_alloc::part2(&input),
|
||||||
"branchless" => unsafe { branchless::part2(&input) },
|
"branchless" => unsafe { branchless::part2(&input) },
|
||||||
|
"no_lines" => unsafe { no_lines::part2(&input) },
|
||||||
_ => {
|
_ => {
|
||||||
eprintln!("error: invalid mode, must be part1,naive,zero_alloc,branchless");
|
eprintln!("error: invalid mode, must be part1,naive,zero_alloc,branchless");
|
||||||
std::process::exit(1);
|
std::process::exit(1);
|
||||||
|
|
|
||||||
77
2023/day1/src/no_lines.rs
Normal file
77
2023/day1/src/no_lines.rs
Normal file
|
|
@ -0,0 +1,77 @@
|
||||||
|
pub unsafe fn part2(input: &str) {
|
||||||
|
let mut sum = 0;
|
||||||
|
|
||||||
|
let bytes = input.as_bytes();
|
||||||
|
|
||||||
|
let mut digits = [0_u8; 128];
|
||||||
|
|
||||||
|
let mut byte_idx = 0;
|
||||||
|
let mut line_idx = 0;
|
||||||
|
|
||||||
|
while byte_idx < bytes.len() {
|
||||||
|
// in memory:
|
||||||
|
// o n e X X X X X
|
||||||
|
// in the integer bytes:
|
||||||
|
// X X X X X e n o
|
||||||
|
// this out of bounds read is UB under SB, but fine under models that don't do provenance narrowing with slices. i dont care enough to fix it.
|
||||||
|
let block = bytes.as_ptr().add(byte_idx).cast::<u64>().read_unaligned().to_le();
|
||||||
|
|
||||||
|
let one = (block & ((1 << (8 * 1)) - 1)) as u8;
|
||||||
|
let three = block & ((1 << (8 * 3)) - 1);
|
||||||
|
let four = block & ((1 << (8 * 4)) - 1);
|
||||||
|
let five = block & ((1 << (8 * 5)) - 1);
|
||||||
|
|
||||||
|
if one == b'\n' {
|
||||||
|
let first = digits[..line_idx].iter().find(|&&d| d > b'0').unwrap();
|
||||||
|
let last = digits[..line_idx]
|
||||||
|
.iter()
|
||||||
|
.rev()
|
||||||
|
.find(|&&d| d > b'0')
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
let first = (first - b'0') as u64;
|
||||||
|
let last = (last - b'0') as u64;
|
||||||
|
sum += first * 10 + last;
|
||||||
|
digits = [0_u8; 128];
|
||||||
|
line_idx = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
const fn gorble(s: &[u8]) -> u64 {
|
||||||
|
let mut bytes = [0; 8];
|
||||||
|
let mut i = 0;
|
||||||
|
while i < s.len() {
|
||||||
|
bytes[7 - i] = s[i];
|
||||||
|
i += 1;
|
||||||
|
}
|
||||||
|
// like: u64::from_be_bytes([0, 0, 0, b't', b'h', b'g', b'i', b'e'])
|
||||||
|
u64::from_be_bytes(bytes)
|
||||||
|
}
|
||||||
|
macro_rules! check {
|
||||||
|
($const:ident $len:ident == $str:expr => $value:expr) => {
|
||||||
|
const $const: u64 = gorble($str);
|
||||||
|
digits[line_idx] |= (if $len == $const { $value } else { 0 });
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
assert!(line_idx < digits.len());
|
||||||
|
|
||||||
|
digits[line_idx] |= if one >= b'0' && one <= b'9' { one } else { 0 };
|
||||||
|
|
||||||
|
check!(EIGHT five == b"eight" => b'8');
|
||||||
|
check!(SEVEN five == b"seven" => b'7');
|
||||||
|
check!(THREE five == b"three" => b'3');
|
||||||
|
|
||||||
|
check!(FIVE four == b"five" => b'5');
|
||||||
|
check!(FOUR four == b"four" => b'4');
|
||||||
|
check!(NINE four == b"nine" => b'9');
|
||||||
|
|
||||||
|
check!(SIX three == b"six" => b'6');
|
||||||
|
check!(TWO three == b"two" => b'2');
|
||||||
|
check!(ONE three == b"one" => b'1');
|
||||||
|
|
||||||
|
byte_idx += 1;
|
||||||
|
line_idx += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
println!("part2: {sum}");
|
||||||
|
}
|
||||||
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
version = 3
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "day1"
|
||||||
|
version = "0.1.0"
|
||||||
6
Cargo.toml
Normal file
6
Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
[workspace]
|
||||||
|
resolver = "2"
|
||||||
|
members = ["2023/*"]
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
debug = 1
|
||||||
Loading…
Add table
Add a link
Reference in a new issue