-
Notifications
You must be signed in to change notification settings - Fork 0
/
day04.lua
237 lines (184 loc) · 5.76 KB
/
day04.lua
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
local read_input = require('lib.read_input')
local str = require('lib.split_str')
local Day04 = {}
function Day04:new(o)
o = o or {}
o.parent = self
setmetatable(o, self)
self.__index = self
return o
end
function Day04:solve()
local xmas_found = 0
for x = 1, #self.input do
for y = 1, #self.input[x] do
if self.input[x]:byte(y) == self.target then
xmas_found = xmas_found + self:count_xmas(x, y)
end
end
end
return xmas_found
end
local Matcher = {}
function Matcher:new(pattern)
local o = {}
o.parent = self
setmetatable(o, self)
self.__index = self
o.pattern = pattern
return o
end
function Matcher:matches(input, x, y)
if self:invalid_position(input, x, y) then
return false
end
for i = 0, #self.pattern - 1 do
if self:pattern_does_not_match_at(input, x, y, i) then
return false
end
end
return true
end
local LeftMatcher = Matcher:new()
function LeftMatcher:invalid_position(_, _, y)
return y - #self.pattern < 0
end
function LeftMatcher:pattern_does_not_match_at(input, x, y, i)
return input[x]:byte(y - i) ~= self.pattern:byte(i + 1)
end
local RightMatcher = Matcher:new()
function RightMatcher:invalid_position(input, x, y)
return not input[x] or (y + (#self.pattern - 1) > #input[x])
end
function RightMatcher:pattern_does_not_match_at(input, x, y, i)
return input[x]:byte(y + i) ~= self.pattern:byte(i + 1)
end
local UpMatcher = Matcher:new()
function UpMatcher:invalid_position(_, x, _)
return x - #self.pattern < 0
end
function UpMatcher:pattern_does_not_match_at(input, x, y, i)
return input[x - i]:byte(y) ~= self.pattern:byte(i + 1)
end
local DownMatcher = Matcher:new()
function DownMatcher:invalid_position(input, x, _)
return x + (#self.pattern - 1) > #input
end
function DownMatcher:pattern_does_not_match_at(input, x, y, i)
return input[x + i]:byte(y) ~= self.pattern:byte(i + 1)
end
local LeftUpMatcher = Matcher:new()
function LeftUpMatcher:invalid_position(input, x, y)
return (not input[x] or y < 1)
or (y - #self.pattern < 0 or x - #self.pattern < 0)
end
function LeftUpMatcher:pattern_does_not_match_at(input, x, y, i)
return input[x - i]:byte(y - i) ~= self.pattern:byte(i + 1)
end
local RightUpMatcher = Matcher:new()
function RightUpMatcher:invalid_position(input, x, y)
return (not input[x] or y < 1)
or (y + (#self.pattern - 1) > #input[x] or x - #self.pattern < 0)
end
function RightUpMatcher:pattern_does_not_match_at(input, x, y, i)
return input[x - i]:byte(y + i) ~= self.pattern:byte(i + 1)
end
local LeftDownMatcher = Matcher:new()
function LeftDownMatcher:invalid_position(input, x, y)
return (not input[x] or y > #input[x])
or (y - #self.pattern < 0 or x + (#self.pattern - 1) > #input)
end
function LeftDownMatcher:pattern_does_not_match_at(input, x, y, i)
return input[x + i]:byte(y - i) ~= self.pattern:byte(i + 1)
end
local RightDownMatcher = Matcher:new()
function RightDownMatcher:invalid_position(input, x, y)
return (not input[x] or y > #input[x])
or (y + (#self.pattern - 1) > #input[x] or x + (#self.pattern - 1) > #input)
end
function RightDownMatcher:pattern_does_not_match_at(input, x, y, i)
return input[x + i]:byte(y + i) ~= self.pattern:byte(i + 1)
end
local Part1 = Day04:new()
function Part1:new(input, pattern)
local o = {}
Day04.new(self, o)
o.input = input.input
o.pattern = pattern or "XMAS"
o.target = o.pattern:byte(1);
return o
end
function Part1:count_xmas(x, y)
local matchers = {
LeftMatcher:new(self.pattern),
RightMatcher:new(self.pattern),
UpMatcher:new(self.pattern),
DownMatcher:new(self.pattern),
LeftUpMatcher:new(self.pattern),
RightUpMatcher:new(self.pattern),
LeftDownMatcher:new(self.pattern),
RightDownMatcher:new(self.pattern)
}
local xmas_found = 0
if self.input[x]:byte(y) == self.target then
for _, matcher in pairs(matchers) do
if matcher:matches(self.input, x, y) then
xmas_found = xmas_found + 1
end
end
end
return xmas_found
end
local Part2 = Day04:new()
function Part2:new(input, pattern)
local o = {}
Day04.new(self, o)
o.input = input.input
o.pattern = pattern or "MAS"
o.target = o.pattern:byte(2);
return o
end
function Part2:count_xmas(x, y)
local lum = LeftUpMatcher:new(self.pattern)
local rum = RightUpMatcher:new(self.pattern)
local ldm = LeftDownMatcher:new(self.pattern)
local rdm = RightDownMatcher:new(self.pattern)
if self.input[x]:byte(y) == self.target then
if (rum:matches(self.input, x + 1, y - 1, self.pattern) and
(lum:matches(self.input, x + 1, y + 1, self.pattern))) or
(rum:matches(self.input, x + 1, y - 1, self.pattern) and
rdm:matches(self.input, x - 1, y - 1, self.pattern)) or
(ldm:matches(self.input, x - 1, y + 1, self.pattern) and
rdm:matches(self.input, x - 1, y - 1, self.pattern)) or
(ldm:matches(self.input, x - 1, y + 1, self.pattern) and
lum:matches(self.input, x + 1, y + 1, self.pattern)) then
return 1
end
end
return 0
end
local Input = {}
function Input:new(o)
o = o or {}
o.parent = self
setmetatable(o, self)
self.__index = self
local input = read_input("MMMSXXMASM\
MSAMXMSMSA\
AMXSXMAAMM\
MSAMASMSMX\
XMASAMXAMM\
XXAMMXXAMA\
SMSMSASXSS\
SAXAMASAAA\
MAMMMXMMMM\
MXMXAXMASX")
local lines = str.split(input, "\n")
o.input = lines
return o
end
local input = Input:new()
local p1 = Part1:new(input)
print("Part 1: " .. p1:solve())
local p2 = Part2:new(input)
print("Part 2: " .. p2:solve())