-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDay23.java
179 lines (148 loc) · 5.1 KB
/
Day23.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package com.sbaars.adventofcode.year23.days;
import com.sbaars.adventofcode.common.Direction;
import com.sbaars.adventofcode.common.grid.InfiniteGrid;
import com.sbaars.adventofcode.common.location.Loc;
import com.sbaars.adventofcode.year23.Day2023;
import java.util.*;
import static com.sbaars.adventofcode.common.Direction.*;
public class Day23 extends Day2023 {
public Day23() {
super(23);
}
public static void main(String[] args) {
new Day23().printParts();
}
@Override
public Object part1() {
return solve(false);
}
@Override
public Object part2() {
return solve(true);
}
private static final class Node {
private final Loc loc;
private final Map<Node, Integer> edges;
Node(Loc loc, Map<Node, Integer> edges) {
this.loc = loc;
this.edges = edges;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Node node = (Node) o;
return Objects.equals(loc, node.loc);
}
@Override
public int hashCode() {
return Objects.hash(loc);
}
}
private long solve(boolean part2) {
var input = new InfiniteGrid(dayGrid());
Loc start = new Loc(1, 0);
Loc target = new Loc(input.width() - 2, input.height() - 1);
// Build graph of important points (junctions)
Map<Loc, Node> nodes = new HashMap<>();
Node startNode = new Node(start, new HashMap<>());
nodes.put(start, startNode);
nodes.put(target, new Node(target, new HashMap<>()));
// Find all junctions (points with more than 2 possible directions)
for (int y = 0; y < input.height(); y++) {
for (int x = 0; x < input.width(); x++) {
Loc loc = new Loc(x, y);
if (input.getChar(loc) == '#') continue;
int exits = countExits(loc, input, part2);
if (exits > 2 || isSlope(input.getChar(loc))) {
nodes.putIfAbsent(loc, new Node(loc, new HashMap<>()));
}
}
}
// Connect nodes
for (Node node : nodes.values()) {
findConnections(node, nodes, input, part2);
}
// DFS to find longest path
Set<Loc> visited = new HashSet<>();
visited.add(start);
int result = dfs(startNode, nodes.get(target), visited, nodes);
return result == Integer.MIN_VALUE ? 0 : result;
}
private boolean isSlope(char c) {
return c == '>' || c == '<' || c == '^' || c == 'v';
}
private int countExits(Loc loc, InfiniteGrid grid, boolean part2) {
return (int) four()
.filter(d -> {
Loc next = d.move(loc);
char currentChar = grid.getChar(loc);
char nextChar = grid.getChar(next);
return (part2 || isValidMove(d, currentChar)) &&
nextChar != '#' && nextChar != 0;
})
.count();
}
private boolean isValidMove(Direction d, char c) {
return switch (c) {
case '>' -> d == EAST;
case '<' -> d == WEST;
case '^' -> d == NORTH;
case 'v' -> d == SOUTH;
default -> true;
};
}
private void findConnections(Node start, Map<Loc, Node> nodes, InfiniteGrid grid, boolean part2) {
for (Direction d : Direction.values()) {
if (d == NORTHEAST || d == NORTHWEST || d == SOUTHEAST || d == SOUTHWEST) continue;
Loc currentLoc = d.move(start.loc);
char startChar = grid.getChar(start.loc);
char currentChar = grid.getChar(currentLoc);
if (currentChar == '#' || currentChar == 0 ||
(!part2 && !isValidMove(d, startChar))) continue;
Set<Loc> visited = new HashSet<>();
visited.add(start.loc);
visited.add(currentLoc);
int distance = 1;
while (!nodes.containsKey(currentLoc)) {
final Loc checkLoc = currentLoc;
var nextDirs = four()
.filter(dir -> {
Loc n = dir.move(checkLoc);
char checkChar = grid.getChar(checkLoc);
char nextChar = grid.getChar(n);
return !visited.contains(n) &&
(part2 || isValidMove(dir, checkChar)) &&
nextChar != '#' && nextChar != 0;
})
.toList();
if (nextDirs.isEmpty()) return;
if (nextDirs.size() > 1) break;
currentLoc = nextDirs.get(0).move(currentLoc);
visited.add(currentLoc);
distance++;
}
if (nodes.containsKey(currentLoc)) {
start.edges.put(nodes.get(currentLoc), distance);
if (part2) {
nodes.get(currentLoc).edges.put(start, distance);
}
}
}
}
private int dfs(Node current, Node target, Set<Loc> visited, Map<Loc, Node> nodes) {
if (current == target) return 0;
int maxLength = Integer.MIN_VALUE;
for (var entry : current.edges.entrySet()) {
Node next = entry.getKey();
if (visited.contains(next.loc)) continue;
visited.add(next.loc);
int length = dfs(next, target, visited, nodes);
if (length != Integer.MIN_VALUE) {
maxLength = Math.max(maxLength, length + entry.getValue());
}
visited.remove(next.loc);
}
return maxLength;
}
}