blob: dbf041a433a6bcf060fa4d9b10b9f4f74eaec63a (
plain) (
blame)
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
|
use std::io::{self, Read};
struct GenA(u64);
impl Iterator for GenA {
type Item = u64;
fn next(&mut self) -> Option<u64> {
self.0 = self.0.wrapping_mul(16807) % 2147483647;
Some(self.0)
}
}
struct GenB(u64);
impl Iterator for GenB {
type Item = u64;
fn next(&mut self) -> Option<u64> {
self.0 = self.0.wrapping_mul(48271) % 2147483647;
Some(self.0)
}
}
fn judge(a: u64, b: u64) -> usize {
GenA(a).zip(GenB(b))
.take(40_000_000)
.filter(|&(a, b)| a & 0xFFFF == b & 0xFFFF)
.count()
}
fn solve1(input: &str) -> usize {
let mut iter = input.split_whitespace();
let a = iter.clone().nth(4).unwrap().parse().unwrap();
let b = iter.nth(9).unwrap().parse().unwrap();
judge(a, b)
}
fn main() {
let mut input = String::new();
io::stdin().read_to_string(&mut input).unwrap();
println!("Part 1: {}", solve1(input.trim()));
}
#[test]
fn part1() {
assert_eq!(588, judge(65, 8921));
}
|