forked from maneatingape/advent-of-code-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday14.rs
179 lines (150 loc) · 5.5 KB
/
day14.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
//! # One-Time Pad
//!
//! Brute force slog through all possible keys, parallelized as much as possible. An optimization
//! for part two is a quick method to convert `u32` to 8 ASCII digits.
use crate::util::md5::*;
use std::collections::{BTreeMap, BTreeSet};
use std::sync::atomic::{AtomicBool, AtomicI32, Ordering};
use std::sync::Mutex;
use std::thread;
/// Atomics can be safely shared between threads.
struct Shared {
done: AtomicBool,
counter: AtomicI32,
}
/// Regular data structures need to be protected by a mutex.
struct Exclusive {
threes: BTreeMap<i32, u32>,
fives: BTreeMap<i32, u32>,
found: BTreeSet<i32>,
}
pub fn parse(input: &str) -> &str {
input.trim()
}
/// Hash each key once.
pub fn part1(input: &str) -> i32 {
let md5 = |n| {
let (mut buffer, size) = format_string(input, n);
hash(&mut buffer, size)
};
generate_pad(md5)
}
/// Hash each key an additional 2016 times.
pub fn part2(input: &str) -> i32 {
let md5 = |n| {
let (mut buffer, size) = format_string(input, n);
let mut result = hash(&mut buffer, size);
for _ in 0..2016 {
buffer[0..8].copy_from_slice(&to_ascii(result.0));
buffer[8..16].copy_from_slice(&to_ascii(result.1));
buffer[16..24].copy_from_slice(&to_ascii(result.2));
buffer[24..32].copy_from_slice(&to_ascii(result.3));
result = hash(&mut buffer, 32);
}
result
};
generate_pad(md5)
}
fn format_string(prefix: &str, n: i32) -> ([u8; 64], usize) {
let string = format!("{prefix}{n}");
let size = string.len();
let mut buffer = [0; 64];
buffer[0..size].copy_from_slice(string.as_bytes());
(buffer, size)
}
/// Find the first 64 keys that sastify the rules.
fn generate_pad(md5: impl Fn(i32) -> (u32, u32, u32, u32) + Copy + Sync) -> i32 {
let shared = Shared { done: AtomicBool::new(false), counter: AtomicI32::new(0) };
let exclusive =
Exclusive { threes: BTreeMap::new(), fives: BTreeMap::new(), found: BTreeSet::new() };
let mutex = Mutex::new(exclusive);
// Use as many cores as possible to parallelize the search.
thread::scope(|scope| {
for _ in 0..thread::available_parallelism().unwrap().get() {
scope.spawn(|| check_keys(&shared, &mutex, md5));
}
});
let exclusive = mutex.into_inner().unwrap();
*exclusive.found.iter().nth(63).unwrap()
}
fn check_keys(
shared: &Shared,
mutex: &Mutex<Exclusive>,
md5: impl Fn(i32) -> (u32, u32, u32, u32),
) {
while !shared.done.load(Ordering::Relaxed) {
// Get the next key to check.
let n = shared.counter.fetch_add(1, Ordering::Relaxed);
// Calculate the hash.
let (a, b, c, d) = md5(n);
// Check for sequences of 3 or 5 consecutive matching digits.
let mut prev = u32::MAX;
let mut same = 1;
let mut three = 0;
let mut five = 0;
for mut word in [d, c, b, a] {
for _ in 0..8 {
let next = word & 0xf;
if next == prev {
same += 1;
} else {
same = 1;
}
if same == 3 {
three = 1 << next;
}
if same == 5 {
five |= 1 << next;
}
word >>= 4;
prev = next;
}
}
if three != 0 || five != 0 {
let mut exclusive = mutex.lock().unwrap();
let mut candidates = Vec::new();
// Compare against all 5 digit sequences.
if three != 0 {
exclusive.threes.insert(n, three);
for (&index, &mask) in exclusive.fives.range(n + 1..n + 1000) {
if three & mask != 0 {
candidates.push(index);
}
}
}
// Compare against all 3 digit sequences.
if five != 0 {
exclusive.fives.insert(n, five);
for (&index, &mask) in exclusive.threes.range(n - 1000..n - 1) {
if five & mask != 0 {
candidates.push(index);
}
}
}
// Add any matching keys found, finishing once we have at least 64 keys.
exclusive.found.extend(candidates);
if exclusive.found.len() >= 64 {
shared.done.store(true, Ordering::Relaxed);
}
}
}
}
/// Quickly convert a `u32` to an array of 8 ASCII values.
fn to_ascii(n: u32) -> [u8; 8] {
// Spread each nibble into its own byte, for example `1234abcd` becomes `010203040a0b0c0d`.
let mut n = n as u64;
n = ((n << 16) & 0x0000ffff00000000) | (n & 0x000000000000ffff);
n = ((n << 8) & 0x00ff000000ff0000) | (n & 0x000000ff000000ff);
n = ((n << 4) & 0x0f000f000f000f00) | (n & 0x000f000f000f000f);
// If a digit is 0 to 9 then we need to add `0x30` to convert to an ASCII digit.
// For digits from 10 to 15 we need to further add `0x27` to convert to lowercase ASCII.
// Steps:
// * Add 6 to each digit
// * If digit is 10 or higher then the highest bit in each nibble will be set
// * Shift this bit to create a mask
// * Multiply mask by 0x27 to get ASCII conversion offset
// For example mask of `010203040a0b0c0d` is `0000000001010101`.
let mask = ((n + 0x0606060606060606) >> 4) & 0x0101010101010101;
n = n + 0x3030303030303030 + 0x27 * mask;
n.to_be_bytes()
}