-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDay19.java
58 lines (47 loc) · 1.26 KB
/
Day19.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
package com.sbaars.adventofcode.year16.days;
import com.sbaars.adventofcode.year16.Day2016;
import java.util.LinkedList;
public class Day19 extends Day2016 {
public Day19() {
super(19);
}
public static void main(String[] args) {
new Day19().printParts();
}
private int findWinningElfPart1(int numElves) {
LinkedList<Integer> elves = new LinkedList<>();
for (int i = 1; i <= numElves; i++) {
elves.add(i);
}
while (elves.size() > 1) {
// Move first elf to the end (they keep their presents)
elves.addLast(elves.removeFirst());
// Remove the next elf (they lose their presents)
elves.removeFirst();
}
return elves.getFirst();
}
private int findWinningElfPart2(int numElves) {
// Pattern: For n = 3^k + l where l < 3^k
// Winner = l if l ≤ 3^k/2
// Winner = 2l - 3^k if 3^k/2 < l ≤ 3^k
int pow = 1;
while (pow * 3 <= numElves) {
pow *= 3;
}
int l = numElves - pow;
if (l <= pow) {
return l;
} else {
return 2 * l - pow;
}
}
@Override
public Object part1() {
return findWinningElfPart1(Integer.parseInt(day().trim()));
}
@Override
public Object part2() {
return findWinningElfPart2(Integer.parseInt(day().trim()));
}
}