-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDay17.java
149 lines (131 loc) · 4.77 KB
/
Day17.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package com.sbaars.adventofcode.year19.days;
import com.sbaars.adventofcode.common.Direction;
import com.sbaars.adventofcode.year19.Day2019;
import com.sbaars.adventofcode.year19.intcode.IntcodeComputer;
import java.awt.*;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
public class Day17 extends Day2019 {
char[][] grid = new char[48][48];
public Day17() {
super(17);
IntcodeComputer ic = new IntcodeComputer(17, 1);
long res;
int x = 0, y = 0;
while ((res = ic.run()) != IntcodeComputer.STOP_CODE) {
if (res == 10) {
y++;
x = 0;
} else {
grid[y][x] = (char) res;
x++;
}
}
}
public static void main(String[] args) {
new Day17().printParts();
}
@Override
public Object part1() {
int result = 0;
for (int y = 1; y < grid.length - 1; y++) {
for (int x = 1; x < grid.length - 1; x++) {
if (hasAdjecent(grid, new Point(x, y), '#')) {
result += x * y;
}
}
}
return result;
}
private boolean hasAdjecent(char[][] grid, Point pos, char tile) {
return grid[pos.y + 1][pos.x] == tile && grid[pos.y][pos.x + 1] == tile && grid[pos.y - 1][pos.x] == tile && grid[pos.y][pos.x - 1] == tile && grid[pos.y][pos.x] == tile;
}
@Override
public Object part2() {
Point pos = findPos(grid, '^').get(0);
List<Instruction> instructions = new ArrayList<>();
List<Point> traversed = new ArrayList<>();
Direction dir;
Direction robotDir = Direction.NORTH;
while ((dir = directionContainsSomethingAndUntraversed(grid, pos, traversed)) != null) {
int n;
for (n = 1; getGrid(grid, dir.move(pos, n)) == '#'; n++) traversed.add(dir.move(pos, n));
pos = dir.move(pos, n - 1);
instructions.add(new Instruction(n - 1, dir.leftOf(robotDir) ? Dir.R : Dir.L));
robotDir = dir;
}
String patterns = findPatterns(instructions) + "\nn\n";
IntcodeComputer ic = new IntcodeComputer(17, 2);
ic.setInput(patterns);
while (true) {
long res = ic.run();
if (res > 255L)
return res;
}
}
private String findPatterns(List<Instruction> instructions) {
List<List<Instruction>> patterns = new ArrayList<>();
StringBuilder patternString = new StringBuilder();
int start = 0;
for (int i = 0; i < instructions.size() - 1; i++) {
List<Instruction> pattern = existing(instructions, patterns, i);
if (pattern != null && start == i) {
start += pattern.size();
i += pattern.size() - 1;
patternString.append(",").append(patterns.indexOf(pattern));
} else if (start != i && (pattern != null || occurrences(instructions, instructions.subList(start, i + 1)) < 3)) {
patternString.append(",").append(patterns.size());
patterns.add(instructions.subList(start, i));
start = i;
i--;
}
}
return patternString.substring(1).replace("0", "A").replace("1", "B").replace("2", "C") + "\n" + patterns.stream().map(this::toString).collect(Collectors.joining("\n"));
}
private List<Instruction> existing(List<Instruction> instructions, List<List<Instruction>> patterns, int i) {
for (List<Instruction> pattern : patterns)
if (i + pattern.size() <= instructions.size() && instructions.subList(i, i + pattern.size()).equals(pattern))
return pattern;
return null;
}
private int occurrences(List<Instruction> instructions, List<Instruction> subList) {
return Math.toIntExact(IntStream.range(0, instructions.size() - subList.size()).filter(i -> toString(instructions.subList(i, i + subList.size())).equals(toString(subList))).count());
}
public String toString(List<Instruction> i) {
return i.stream().map(Instruction::toString).collect(Collectors.joining(","));
}
private char getGrid(char[][] grid, Point p) {
if (p.x < 0 || p.y < 0 || p.x >= grid[0].length || p.y >= grid.length) return '.';
return grid[p.y][p.x];
}
private Direction directionContainsSomethingAndUntraversed(char[][] grid, Point pos, List<Point> traversed) {
Direction dir = Direction.NORTH;
for (int i = 0; i < 4; i++) {
Point p = dir.move(pos);
if (getGrid(grid, p) == '#' && !traversed.contains(p)) {
return dir;
}
dir = dir.turn(true);
}
return null;
}
private List<Point> findPos(char[][] grid, char tile) {
List<Point> positions = new ArrayList<>();
for (int y = 0; y < grid.length; y++) {
for (int x = 0; x < grid[y].length; x++) {
if (grid[y][x] == tile)
positions.add(new Point(x, y));
}
}
return positions;
}
enum Dir {L, R}
record Instruction(int amount, Dir dir) {
@Override
public String toString() {
return dir.name() + "," + amount;
}
}
}