-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDay15.java
70 lines (56 loc) · 1.86 KB
/
Day15.java
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
package com.sbaars.adventofcode.year17.days;
import com.sbaars.adventofcode.year17.Day2017;
public class Day15 extends Day2017 {
private static final long FACTOR_A = 16807;
private static final long FACTOR_B = 48271;
private static final long DIVISOR = 2147483647;
private static final int MASK = 0xFFFF; // For getting lowest 16 bits
public Day15() {
super(15);
}
public static void main(String[] args) {
new Day15().printParts();
}
private long nextValue(long prev, long factor) {
return (prev * factor) % DIVISOR;
}
private long nextValueWithCriteria(long prev, long factor, long multiple) {
long next = nextValue(prev, factor);
while (next % multiple != 0) {
next = nextValue(next, factor);
}
return next;
}
@Override
public Object part1() {
long genA = 591; // puzzle input
long genB = 393; // puzzle input
int matches = 0;
for (int i = 0; i < 40_000_000; i++) {
// Generate next values
genA = nextValue(genA, FACTOR_A);
genB = nextValue(genB, FACTOR_B);
// Compare lowest 16 bits
if ((genA & MASK) == (genB & MASK)) {
matches++;
}
}
return matches;
}
@Override
public Object part2() {
long genA = 591; // puzzle input
long genB = 393; // puzzle input
int matches = 0;
for (int i = 0; i < 5_000_000; i++) {
// Generate next values that meet criteria
genA = nextValueWithCriteria(genA, FACTOR_A, 4);
genB = nextValueWithCriteria(genB, FACTOR_B, 8);
// Compare lowest 16 bits
if ((genA & MASK) == (genB & MASK)) {
matches++;
}
}
return matches;
}
}