-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay9a.java
116 lines (104 loc) · 3.5 KB
/
Day9a.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* An alternative with "data-oriented programming" */
import java.io.IO;
import com.horstmann.adventofcode.*;
sealed interface Block {
int length();
}
record FileBlock(int id, int length) implements Block {}
record FreeBlock(int length) implements Block {}
List<Block> blocks;
void parse(Path p) throws IOException {
String input = Files.readString(p);
blocks = new ArrayList<>();
for (int i = 0; i < input.length(); i ++) {
int length = input.charAt(i) - '0';
blocks.add(i % 2 == 0 ? new FileBlock(i / 2, length) : new FreeBlock(length));
}
}
long checksum(List<Block> blocks) {
long sum = 0;
int start = 0;
for (var b : blocks) {
switch (b) {
case FileBlock fb -> { for (int i = 0; i < b.length(); i++) { sum += fb.id() * start; start++; } }
default -> { start += b.length(); }
};
}
return sum;
}
Object part1() {
var defragged = new ArrayList<Block>();
int b = blocks.size() - 1;
FileBlock back = (FileBlock) blocks.get(b);
int backLength = back.length();
int f = 0;
int frontFree = 0;
while (f < b) {
Block front = blocks.get(f);
defragged.add(front);
frontFree = blocks.get(f + 1).length();
boolean filled = false;
while (!filled) {
if (backLength <= frontFree) { // back fits
defragged.add(new FileBlock(back.id(), backLength));
if (backLength < frontFree) { // space for more
frontFree -= backLength;
}
else { // fits exactly
filled = true;
}
b -= 2;
if (f < b) {
back = (FileBlock) blocks.get(b);
backLength = back.length();
} else {
filled = true;
backLength = 0;
}
} else { // back too large
defragged.add(new FileBlock(back.id(), frontFree));
backLength -= frontFree;
filled = true;
}
}
f += 2;
}
if (backLength > 0) defragged.add(new FileBlock(back.id(), backLength));
return checksum(defragged);
}
Object part2() {
int b = blocks.size() - 1;
int lastMoved = b + 1;
while (b > 0) {
if (blocks.get(b) instanceof FileBlock back) {
boolean moved = false;
if (back.id() < lastMoved) { // Don't move twice
for (int f = 1; !moved && f < b; f++) {
// Find first free space that can hold the entire file
if (blocks.get(f) instanceof FreeBlock front && front.length() >= back.length()) {
blocks.set(b, new FreeBlock(back.length));
lastMoved = back.id();
blocks.set(f, back);
if (front.length() > back.length()) {
blocks.add(f + 1, new FreeBlock(front.length() - back.length()));
b++;
}
moved = true;
}
}
}
}
b--;
}
return checksum(blocks);
}
void main() throws IOException {
Util.time(() -> {
parse(Util.inputPath("a"));
IO.println(part1());
IO.println(part2());
parse(Util.inputPath("z"));
IO.println(part1());
IO.println(part2());
});
}