FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
adventofcode/src/main/java/AoC2021_18.java at main · pareronia/adventofcode · GitHub
pareronia
/
adventofcode
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
2
Code
Issues
0
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
adventofcode
/
src
/
main
/
java
/
AoC2021_18.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
321 lines (280 loc) · 10.5 KB
Breadcrumbs
adventofcode
/
src
/
main
/
java
/
AoC2021_18.java
Copy path
File metadata and controls
321 lines (280 loc) · 10.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
import
static
java
.
util
.
stream
.
Collectors
.
toList
;
import
java
.
util
.
ArrayDeque
;
import
java
.
util
.
Deque
;
import
java
.
util
.
List
;
import
java
.
util
.
Objects
;
import
java
.
util
.
function
.
Supplier
;
import
java
.
util
.
stream
.
Stream
;
import
com
.
github
.
pareronia
.
aocd
.
Aocd
;
import
com
.
github
.
pareronia
.
aocd
.
Puzzle
;
public
class
AoC2021_18
extends
AoCBase
{
private
final
List
<
String
>
inputs
;
private
AoC2021_18
(
final
List
<
String
>
input
,
final
boolean
debug
) {
super
(
debug
);
this
.
inputs
=
input
;
Reducer
.
debug
=
debug
;
}
static
final
class
Parser
{
public
static
Number
parse
(
final
String
line
) {
final
Deque
<
Number
>
stack
=
new
ArrayDeque
<>();
for
(
int
i
=
0
;
i
<
line
.
length
();
i
++) {
final
Character
ch
=
line
.
charAt
(
i
);
if
(
ch
==
'['
) {
continue
;
}
else
if
(
Character
.
isDigit
(
ch
)) {
stack
.
push
(
new
Regular
(
Character
.
digit
(
ch
,
10
)));
}
else
if
(
ch
==
','
) {
continue
;
}
else
{
final
Number
right
=
stack
.
pop
();
final
Number
left
=
stack
.
pop
();
final
Pair
pair
=
Pair
.
create
(
left
,
right
);
stack
.
push
(
pair
);
}
}
assert
stack
.
size
() ==
1
;
return
stack
.
pop
();
}
}
public
static
final
AoC2021_18
create
(
final
List
<
String
>
input
) {
return
new
AoC2021_18
(
input
,
false
);
}
public
static
final
AoC2021_18
createDebug
(
final
List
<
String
>
input
) {
return
new
AoC2021_18
(
input
,
true
);
}
static
final
class
Exploder
{
public
static
boolean
explode
(
final
Number
number
,
final
int
depth
) {
if
(
number
instanceof
Regular
) {
return
false
;
}
final
Pair
pair
= (
Pair
)
number
;
if
(
depth
==
4
) {
final
Regular
leftAdjacent
=
pair
.
leftAdjacent
();
final
Regular
rightAdjacent
=
pair
.
rightAdjacent
();
if
(
leftAdjacent
!=
null
) {
leftAdjacent
.
value
+= ((
Regular
)
pair
.
left
).
getValue
();
}
if
(
rightAdjacent
!=
null
) {
rightAdjacent
.
value
+= ((
Regular
)
pair
.
right
).
getValue
();
}
final
Pair
parent
= (
Pair
)
pair
.
parent
;
assert
parent
!=
null
;
if
(
Objects
.
equals
(
pair
,
parent
.
left
)) {
parent
.
left
=
new
Regular
(
0
);
parent
.
left
.
parent
=
parent
;
}
else
if
(
Objects
.
equals
(
pair
,
parent
.
right
)) {
parent
.
right
=
new
Regular
(
0
);
parent
.
right
.
parent
=
parent
;
}
else
{
throw
new
IllegalStateException
();
}
return
true
;
}
return
explode
(
pair
.
left
,
depth
+
1
) ||
explode
(
pair
.
right
,
depth
+
1
);
}
}
static
final
class
Splitter
{
public
static
boolean
split
(
final
Number
number
) {
return
doSplit
(
number
);
}
private
static
boolean
doSplit
(
final
Number
number
) {
if
(
number
instanceof
final
Regular
regular
) {
final
int
value
=
regular
.
value
;
if
(
value
>=
10
) {
final
Pair
pair
=
Pair
.
create
(
new
Regular
(
value
/
2
),
new
Regular
(
value
-
value
/
2
));
pair
.
parent
=
regular
.
parent
;
final
Pair
parent
= (
Pair
)
regular
.
parent
;
if
(
regular
.
equals
(
parent
.
left
)) {
parent
.
left
=
pair
;
}
else
if
(
regular
.
equals
(
parent
.
right
)) {
parent
.
right
=
pair
;
}
else
{
throw
new
IllegalStateException
();
}
return
true
;
}
else
{
return
false
;
}
}
final
Pair
pair
= (
Pair
)
number
;
return
doSplit
(
pair
.
left
) ||
doSplit
(
pair
.
right
);
}
}
static
final
class
Reducer
{
static
boolean
debug
;
private
static
void
log
(
final
Supplier
<
Object
>
supplier
) {
if
(!
debug
) {
return
;
}
System
.
out
.
println
(
supplier
.
get
());
}
static
void
reduce
(
final
Number
number
) {
log
(() ->
"Reducing: "
+
number
);
while
(
true
) {
if
(
Exploder
.
explode
(
number
,
0
)) {
log
(() ->
"after explode: "
+
number
);
continue
;
}
if
(
Splitter
.
split
(
number
)) {
log
(() ->
"after split: "
+
number
);
continue
;
}
break
;
}
}
}
static
final
class
Adder
{
public
static
Number
add
(
final
Number
left
,
final
Number
right
) {
return
Pair
.
create
(
left
,
right
);
}
}
static
class
Magnitude
{
public
static
long
magnitude
(
final
Number
number
) {
if
(
number
instanceof
Regular
) {
return
((
Regular
)
number
).
value
;
}
final
Pair
pair
= (
Pair
)
number
;
return
3
*
magnitude
(
pair
.
left
) +
2
*
magnitude
(
pair
.
right
);
}
}
private
Number
solve
(
final
List
<
Number
>
numbers
) {
Number
sum
=
numbers
.
get
(
0
);
for
(
int
i
=
1
;
i
<
numbers
.
size
();
i
++) {
sum
=
Adder
.
add
(
sum
,
numbers
.
get
(
i
));
Reducer
.
reduce
(
sum
);
}
return
sum
;
}
private
Number
solve1
() {
return
solve
(
this
.
inputs
.
stream
()
.
map
(
Parser
::
parse
)
.
collect
(
toList
()));
}
@
Override
public
Long
solvePart1
() {
final
Number
sum
=
solve1
();
log
(
"final sum is: "
+
sum
);
return
Magnitude
.
magnitude
(
sum
);
}
@
Override
public
Long
solvePart2
() {
return
this
.
inputs
.
stream
()
.
flatMap
(
s1
->
this
.
inputs
.
stream
()
.
filter
(
s2
-> !
s2
.
equals
(
s1
))
.
flatMap
(
s2
-> {
final
Number
n1
=
Parser
.
parse
(
s1
);
final
Number
n2
=
Parser
.
parse
(
s2
);
return
Stream
.
of
(
List
.
of
(
n1
,
n2
));
}))
.
map
(
this
::
solve
)
.
map
(
Magnitude
::
magnitude
)
.
mapToLong
(
Long
::
valueOf
)
.
max
().
orElseThrow
();
}
public
static
void
main
(
final
String
[]
args
)
throws
Exception
{
assert
AoC2021_18
.
create
(
List
.
of
(
"[1,1]"
,
"[2,2]"
,
"[3,3]"
,
"[4,4]"
,
"[5,5]"
,
"[6,6]"
)).
solve1
().
toString
().
equals
(
"[[[[5,0],[7,4]],[5,5]],[6,6]]"
);
assert
AoC2021_18
.
create
(
TEST1
).
solve1
().
toString
().
equals
(
"[[[[8,7],[7,7]],[[8,6],[7,7]]],[[[0,7],[6,6]],[8,7]]]"
);
assert
AoC2021_18
.
create
(
TEST2
).
solvePart1
() ==
4_140L
;
assert
AoC2021_18
.
create
(
TEST2
).
solvePart2
() ==
3_993L
;
final
Puzzle
puzzle
=
Aocd
.
puzzle
(
2021
,
18
);
puzzle
.
check
(
() ->
lap
(
"Part 1"
, () ->
AoC2021_18
.
create
(
puzzle
.
getInputData
()).
solvePart1
()),
() ->
lap
(
"Part 2"
, () ->
AoC2021_18
.
create
(
puzzle
.
getInputData
()).
solvePart2
())
);
}
private
static
final
List
<
String
>
TEST1
=
splitLines
(
"[[[0,[4,5]],[0,0]],[[[4,5],[2,6]],[9,5]]]
\r
\n
"
+
"[7,[[[3,7],[4,3]],[[6,3],[8,8]]]]
\r
\n
"
+
"[[2,[[0,8],[3,4]]],[[[6,7],1],[7,[1,6]]]]
\r
\n
"
+
"[[[[2,4],7],[6,[0,5]]],[[[6,8],[2,8]],[[2,1],[4,5]]]]
\r
\n
"
+
"[7,[5,[[3,8],[1,4]]]]
\r
\n
"
+
"[[2,[2,2]],[8,[8,1]]]
\r
\n
"
+
"[2,9]
\r
\n
"
+
"[1,[[[9,3],9],[[9,0],[0,7]]]]
\r
\n
"
+
"[[[5,[7,4]],7],1]
\r
\n
"
+
"[[[[4,2],2],6],[8,7]]"
);
private
static
final
List
<
String
>
TEST2
=
splitLines
(
"[[[0,[5,8]],[[1,7],[9,6]]],[[4,[1,2]],[[1,4],2]]]
\r
\n
"
+
"[[[5,[2,8]],4],[5,[[9,9],0]]]
\r
\n
"
+
"[6,[[[6,2],[5,6]],[[7,6],[4,7]]]]
\r
\n
"
+
"[[[6,[0,7]],[0,9]],[4,[9,[9,0]]]]
\r
\n
"
+
"[[[7,[6,4]],[3,[1,3]]],[[[5,5],1],9]]
\r
\n
"
+
"[[6,[[7,3],[3,2]]],[[[3,8],[5,7]],4]]
\r
\n
"
+
"[[[[5,4],[7,7]],8],[[8,3],8]]
\r
\n
"
+
"[[9,3],[[9,9],[6,[4,9]]]]
\r
\n
"
+
"[[2,[[7,7],7]],[[5,8],[[9,3],[0,2]]]]
\r
\n
"
+
"[[[[5,2],5],[8,[3,7]]],[[5,[7,5]],[4,4]]]"
);
static
abstract
class
Number
{
protected
Number
parent
=
null
;
}
static
final
class
Regular
extends
Number
{
private
int
value
= -
1
;
public
Regular
(
final
int
value
) {
this
.
value
=
value
;
}
public
int
getValue
() {
return
value
;
}
@
Override
public
String
toString
() {
return
String
.
valueOf
(
this
.
value
);
}
}
static
final
class
Pair
extends
Number
{
private
Number
left
=
null
;
private
Number
right
=
null
;
public
Pair
(
final
Number
left
,
final
Number
right
) {
this
.
left
=
left
;
this
.
right
=
right
;
}
public
static
Pair
create
(
final
Number
left
,
final
Number
right
) {
final
Pair
pair
=
new
Pair
(
left
,
right
);
left
.
parent
=
pair
;
right
.
parent
=
pair
;
return
pair
;
}
public
Number
getLeft
() {
return
left
;
}
public
Number
getRight
() {
return
right
;
}
public
Regular
leftAdjacent
() {
final
Pair
parent
=
getParent
();
if
(
parent
==
null
) {
return
null
;
}
if
(
this
==
parent
.
right
) {
Number
left
=
parent
.
left
;
while
(
left
instanceof
Pair
) {
left
= ((
Pair
)
left
).
right
;
}
return
(
Regular
)
left
;
}
return
parent
.
leftAdjacent
();
}
public
Regular
rightAdjacent
() {
final
Pair
parent
=
getParent
();
if
(
parent
==
null
) {
return
null
;
}
if
(
this
==
parent
.
left
) {
Number
right
=
parent
.
right
;
while
(
right
instanceof
Pair
) {
right
= ((
Pair
)
right
).
left
;
}
return
(
Regular
)
right
;
}
return
parent
.
rightAdjacent
();
}
public
Pair
getParent
() {
return
(
Pair
)
this
.
parent
;
}
@
Override
public
String
toString
() {
return
String
.
format
(
"[%s,%s]"
,
this
.
left
,
this
.
right
);
}
}
}
Back
|
FazBrowse Home
|
New Git URL