-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDay5.java
48 lines (38 loc) · 1.35 KB
/
Day5.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
package com.sbaars.adventofcode.year18.days;
import com.sbaars.adventofcode.common.Pair;
import com.sbaars.adventofcode.year18.Day2018;
import static com.sbaars.adventofcode.util.AoCUtils.*;
import static java.lang.Math.abs;
import static java.util.stream.IntStream.range;
public class Day5 extends Day2018 {
private static final int DIFF = 'a' - 'A';
public Day5() {
super(5);
}
public static void main(String[] args) {
new Day5().printParts();
}
@Override
public Object part1() {
return fullyReact(day().trim());
}
@Override
public Object part2() {
String input = day().trim();
return range('A', 'Z').parallel().map(c -> fullyReact(input.replace((char) c, ' ').replace((char) (c + DIFF), ' ').replace(" ", ""))).min().getAsInt();
}
public int fullyReact(String s) {
return fixedPoint(s, this::react).length();
}
public String react(String s) {
StringBuilder b = new StringBuilder(s);
int[] removeIndices = zip(range(0, s.length()).boxed(), connectedPairs(s.chars().boxed()), (i, p) -> new Pair<>(i, abs(p.a() - p.b()) - DIFF == 0)).filter(Pair::b).mapToInt(Pair::a).toArray();
for (int i = removeIndices.length - 1; i >= 0; i--) {
int index = removeIndices[i];
if (i == 0 || removeIndices[i - 1] != index - 1) {
b.replace(index, index + 2, "");
}
}
return b.toString();
}
}