Skip to content

Commit 9d9c605

Browse files
authored
Create Day19.java
1 parent 39ca859 commit 9d9c605

File tree

1 file changed

+109
-0
lines changed

1 file changed

+109
-0
lines changed

Day19.java

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
2+
import java.util.Arrays;
3+
import java.util.List;
4+
5+
public class Day19 {
6+
7+
static class Point {
8+
int x;
9+
10+
int y;
11+
12+
char direction; // D, U, L, R
13+
14+
String result;
15+
16+
public Point(int x, int y, char direction, String result) {
17+
this.x = x;
18+
this.y = y;
19+
this.result = result;
20+
this.direction = direction;
21+
}
22+
}
23+
24+
static int part1(List<String> rows) {
25+
char[][] grid = new char[rows.size()][rows.iterator().next().length()];
26+
for (int i = 0; i < rows.size(); i++) {
27+
String row = rows.get(i);
28+
if (row.length() < rows.size()) {
29+
grid[i] = new char[rows.size()];
30+
Arrays.fill(grid[i], ' ');
31+
System.arraycopy(row.toCharArray(), 0, grid[i], 0, row.length());
32+
}
33+
else {
34+
grid[i] = row.toCharArray();
35+
}
36+
}
37+
38+
Point p = null;
39+
for (int i = 0; i < grid[0].length; i++) {
40+
if (grid[0][i] == '|') {
41+
p = new Point(0, i, 'D', "");
42+
break;
43+
}
44+
}
45+
46+
int steps = 0;
47+
while (p != null) {
48+
if (p.result.length() == 10) {
49+
System.out.println(p.result);
50+
// return p.result;
51+
return steps;
52+
}
53+
54+
steps++;
55+
56+
if (grid[p.x][p.y] >= 'A' && grid[p.x][p.y] <= 'Z') {
57+
p.result += grid[p.x][p.y];
58+
}
59+
60+
if (grid[p.x][p.y] == '+') {
61+
// change direction
62+
if (p.direction == 'D' || p.direction == 'U') {
63+
if (p.y > 0 && grid[p.x][p.y - 1] == '-') {
64+
p.y--;
65+
p.direction = 'L';
66+
}
67+
else if (p.y < grid[p.x].length - 1 && grid[p.x][p.y + 1] == '-') {
68+
p.y++;
69+
p.direction = 'R';
70+
}
71+
}
72+
else if (p.direction == 'L' || p.direction == 'R') {
73+
if (p.x > 0 && grid[p.x - 1][p.y] == '|') {
74+
p.x--;
75+
p.direction = 'U';
76+
}
77+
else if (p.x < grid.length - 1 && grid[p.x + 1][p.y] == '|') {
78+
p.x++;
79+
p.direction = 'D';
80+
}
81+
}
82+
}
83+
// keep going
84+
else if (p.direction == 'D') {
85+
p.x++;
86+
}
87+
else if (p.direction == 'U') {
88+
p.x--;
89+
}
90+
else if (p.direction == 'L') {
91+
p.y--;
92+
}
93+
else if (p.direction == 'R') {
94+
p.y++;
95+
}
96+
else {
97+
p = null;
98+
}
99+
}
100+
101+
return -1;
102+
}
103+
104+
public static void main(String[] args) {
105+
List<String> input = Util.readInput("day19.input");
106+
107+
System.out.println(part1(input)); // 17302
108+
}
109+
}

0 commit comments

Comments
 (0)