This commit is contained in:
2024-12-07 12:53:16 +01:00
parent e0663cce26
commit 6ebb9f8307
4 changed files with 132 additions and 0 deletions

2
2024/day7/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
target
input.txt

61
2024/day7/Cargo.lock generated Normal file
View File

@@ -0,0 +1,61 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "crossbeam-deque"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
[[package]]
name = "day7"
version = "0.1.0"
dependencies = [
"rayon",
]
[[package]]
name = "either"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "rayon"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]

7
2024/day7/Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "day7"
version = "0.1.0"
edition = "2021"
[dependencies]
rayon = "1.10.0"

62
2024/day7/src/main.rs Normal file
View File

@@ -0,0 +1,62 @@
use std::{fs, time::Instant};
use rayon::prelude::*;
fn main() {
let file = fs::read_to_string("./input.txt").unwrap();
let data = file
.lines()
.map(|line| {
line.replace(":", "")
.split_whitespace()
.filter_map(|x| x.parse::<u64>().ok())
.collect::<Vec<u64>>()
})
.collect::<Vec<Vec<u64>>>();
let ops = vec![
|a: u64, b: u64| a + b,
|a: u64, b: u64| a * b,
|a: u64, b: u64| a * 10u64.pow(b.ilog10() + 1) + b,
];
let start = Instant::now();
println!("Solution 1: {}", puzzle1(&data, &ops[..2]));
let end = Instant::now() - start;
println!("Solution 1 time: {}", end.as_micros());
let start = Instant::now();
println!("Solution 2: {}", puzzle2(&data, &ops));
let end = Instant::now() - start;
println!("Solution 2 time: {}", end.as_micros());
}
fn puzzle1(input: &[Vec<u64>], ops: &[fn(u64, u64) -> u64]) -> u64 {
input.par_iter().map(|nums| solve(nums, ops)).sum::<u64>()
}
fn puzzle2(input: &[Vec<u64>], ops: &[fn(u64, u64) -> u64]) -> u64 {
input.par_iter().map(|nums| solve(nums, ops)).sum::<u64>()
}
fn solve(nums: &[u64], ops: &[fn(u64, u64) -> u64]) -> u64 {
if nums.len() == 2 {
return (nums[0] == nums[1]) as u64;
}
let (total, rest) = nums.split_first().unwrap();
let (a, rest) = rest.split_first().unwrap();
let (b, rest) = rest.split_first().unwrap();
for op in ops {
let mut new_nums = vec![*total, op(*a, *b)];
new_nums.extend_from_slice(rest);
if solve(&new_nums, ops) != 0 {
return *total;
}
}
0
}