-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDay4.java
54 lines (44 loc) · 1.46 KB
/
Day4.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
package com.sbaars.adventofcode.year23.days;
import com.sbaars.adventofcode.common.Pair;
import com.sbaars.adventofcode.common.Tuple;
import com.sbaars.adventofcode.common.map.LongCountMap;
import com.sbaars.adventofcode.year23.Day2023;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Stream;
import static com.sbaars.adventofcode.util.DataMapper.readString;
import static java.lang.Math.pow;
import static java.util.Arrays.stream;
public class Day4 extends Day2023 {
public Day4() {
super(4);
}
public static void main(String[] args) {
new Day4().printParts();
}
public record Card(int number, List<Integer> winning, List<Integer> nums) {}
@Override
public Object part1() {
return countNumberWon()
.mapToLong(nWon -> (long) pow(2, nWon - 1))
.sum();
}
private Stream<Long> countNumberWon() {
return stream(day().replace(" ", " ").split("\n"))
.map(s -> readString(s, "Card %i: %li | %li", " ", Card.class, Integer.class))
.map(c -> c.winning.stream().filter(c.nums::contains).count());
}
@Override
public Object part2() {
List<Long> numberWon = countNumberWon().toList();
var lcm = new LongCountMap<Integer>();
for(int i = 0; i<numberWon.size(); i++) {
long number = lcm.get(i) + 1;
for(int k = 0; k<numberWon.get(i); k++) {
lcm.increment(i+k+1, number);
}
}
return lcm.sum() + numberWon.size();
}
}