-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDay4.java
66 lines (56 loc) · 2.13 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
55
56
57
58
59
60
61
62
63
64
65
66
package com.sbaars.adventofcode.year18.days;
import com.sbaars.adventofcode.common.map.ListCountMap;
import com.sbaars.adventofcode.year18.Day2018;
import java.time.Duration;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.List;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
import static com.sbaars.adventofcode.util.AoCUtils.findMax;
import static com.sbaars.adventofcode.util.DataMapper.readString;
public class Day4 extends Day2018 {
public Day4() {
super(4);
}
public static void main(String[] args) {
new Day4().printParts();
}
public record Event(String timestamp, String event) {
public LocalDateTime getTimestamp() {
return LocalDateTime.parse(timestamp, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm"));
}
}
@Override
public Object part1() {
var lcm = getSleepMinutes();
var max = findMax(lcm.entrySet(), g -> g.getValue().sum());
return max.getKey() * findMax(max.getValue().entrySet(), Map.Entry::getValue).getKey();
}
@Override
public Object part2() {
var lcm = getSleepMinutes();
var max = findMax(lcm.entrySet(), g -> g.getValue().values().stream().mapToInt(e -> e).max().getAsInt());
return max.getKey() * findMax(max.getValue().entrySet(), Map.Entry::getValue).getKey();
}
private ListCountMap<Integer, Integer> getSleepMinutes() {
List<Event> events = dayStream().sorted().map(s -> readString(s, "[%s] %s", Event.class)).toList();
int currentGuard = 0;
LocalDateTime asleep = events.get(0).getTimestamp();
ListCountMap<Integer, Integer> lcm = new ListCountMap<>();
for (Event event : events) {
if (event.event.startsWith("Guard")) {
currentGuard = readString(event.event, "Guard #%i begins shift", AtomicInteger.class).get();
} else if (event.event.equals("falls asleep")) {
asleep = event.getTimestamp();
} else {
LocalDateTime d = event.getTimestamp();
while (asleep.isBefore(d)) {
lcm.increment(currentGuard, asleep.getMinute());
asleep = asleep.plus(Duration.ofMinutes(1));
}
}
}
return lcm;
}
}