Skip to content

Commit 3c1b8fb

Browse files
feat(day-12): completed day 12 with lua
1 parent 1cf265b commit 3c1b8fb

File tree

5 files changed

+242
-1
lines changed

5 files changed

+242
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Here is the list of the problems solved and language used to solve them
1717
- [x] Day 9 - OCaml
1818
- [x] Day 10 - Zig
1919
- [x] Day 11 - Octave/Matlab
20-
- [ ] Day 12
20+
- [x] Day 12 - Lua
2121
- [ ] Day 13
2222
- [ ] Day 14
2323
- [ ] Day 15

day-12/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.in

day-12/Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
run: solution.lua
2+
luajit solution.lua
3+
4+
run2: solution2.lua
5+
luajit solution2.lua

day-12/solution.lua

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
-- @param line string
2+
-- @return string
3+
-- @return integer[]
4+
function parse_input(line)
5+
local _, _, data, parity = string.find(line, "(.*) (.*)")
6+
local parity_list = {}
7+
for i in string.gmatch(parity, '([^,]+)') do
8+
table.insert(parity_list, tonumber(i))
9+
end
10+
11+
return data, parity_list
12+
end
13+
14+
function inspect(data, indent)
15+
indent = indent or 0
16+
local indentStr = string.rep(" ", indent)
17+
18+
if type(data) == "table" then
19+
local output = "{\n"
20+
for key, value in pairs(data) do
21+
local keyStr = type(key) == "string" and '["' .. key .. '"]' or "[" .. tostring(key) .. "]"
22+
output = output .. indentStr .. " " .. keyStr .. " = " .. inspect(value, indent + 1) .. ",\n"
23+
end
24+
return output .. indentStr .. "}"
25+
else
26+
return tostring(data)
27+
end
28+
end
29+
30+
function solve(data, nums, cache)
31+
if cache == nil then
32+
cache = {}
33+
end
34+
local cache_key = data .. table.concat(nums, "")
35+
local cache_output = cache[cache_key]
36+
if cache_output ~= nil then
37+
return cache_output
38+
end
39+
if data == "" then
40+
if #nums == 0 then
41+
return 1
42+
else
43+
return 0
44+
end
45+
end
46+
47+
if #nums == 0 then
48+
if string.find(data, "#") ~= nil then
49+
cache[cache_key] = 0
50+
return 0
51+
else
52+
cache[cache_key] = 1
53+
return 1
54+
end
55+
end
56+
57+
local output = 0
58+
59+
if string.find(string.sub(data, 1, 1), "[.?]") ~= nil then
60+
output = output + solve(string.sub(data, 2), nums, cache)
61+
end
62+
63+
if string.find(string.sub(data, 1, 1), "[#?]") ~= nil then
64+
if ((nums[1] <= #data)
65+
and (string.find(string.sub(data, 1, nums[1]), "[.]") == nil)
66+
and (nums[1] == #data or string.sub(data, nums[1] + 1, nums[1] + 1) ~= "#")) then
67+
local new_table = table.list_copy(nums);
68+
table.remove(new_table, 1)
69+
output = output + solve(string.sub(data, nums[1] + 2), new_table, cache)
70+
end
71+
end
72+
cache[cache_key] = output
73+
return output
74+
end
75+
76+
function merge(t1, t2)
77+
local output = {}
78+
for _, v in ipairs(t1) do
79+
table.insert(output, v)
80+
end
81+
82+
for _, v in ipairs(t2) do
83+
table.insert(output, v)
84+
end
85+
return output
86+
end
87+
88+
function table.list_copy(t)
89+
local output = {}
90+
for _, v in ipairs(t) do
91+
table.insert(output, v)
92+
end
93+
return output
94+
end
95+
96+
local total = 0
97+
98+
while true do
99+
local line = io.read("l")
100+
if line == nil then break; end
101+
local data, parity_list = parse_input(line)
102+
total = total + solve(data, parity_list)
103+
end
104+
105+
print(total)

day-12/solution2.lua

+130
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
-- @param line string
2+
-- @return string
3+
-- @return integer[]
4+
function parse_input(line)
5+
local _, _, data, parity = string.find(line, "(.*) (.*)")
6+
local parity_list = {}
7+
for i in string.gmatch(parity, '([^,]+)') do
8+
table.insert(parity_list, tonumber(i))
9+
end
10+
11+
return data, parity_list
12+
end
13+
14+
function inspect(data, indent)
15+
indent = indent or 0
16+
local indentStr = string.rep(" ", indent)
17+
18+
if type(data) == "table" then
19+
local output = "{\n"
20+
for key, value in pairs(data) do
21+
local keyStr = type(key) == "string" and '["' .. key .. '"]' or "[" .. tostring(key) .. "]"
22+
output = output .. indentStr .. " " .. keyStr .. " = " .. inspect(value, indent + 1) .. ",\n"
23+
end
24+
return output .. indentStr .. "}"
25+
else
26+
return tostring(data)
27+
end
28+
end
29+
30+
function solve(data, nums, cache)
31+
if cache == nil then
32+
cache = {}
33+
end
34+
local cache_key = data .. table.concat(nums, "")
35+
local cache_output = cache[cache_key]
36+
if cache_output ~= nil then
37+
return cache_output
38+
end
39+
if data == "" then
40+
if #nums == 0 then
41+
return 1
42+
else
43+
return 0
44+
end
45+
end
46+
47+
if #nums == 0 then
48+
if string.find(data, "#") ~= nil then
49+
cache[cache_key] = 0
50+
return 0
51+
else
52+
cache[cache_key] = 1
53+
return 1
54+
end
55+
end
56+
57+
local output = 0
58+
59+
if string.find(string.sub(data, 1, 1), "[.?]") ~= nil then
60+
output = output + solve(string.sub(data, 2), nums, cache)
61+
end
62+
63+
if string.find(string.sub(data, 1, 1), "[#?]") ~= nil then
64+
if ((nums[1] <= #data)
65+
and (string.find(string.sub(data, 1, nums[1]), "[.]") == nil)
66+
and (nums[1] == #data or string.sub(data, nums[1] + 1, nums[1] + 1) ~= "#")) then
67+
local new_table = table.list_copy(nums);
68+
table.remove(new_table, 1)
69+
output = output + solve(string.sub(data, nums[1] + 2), new_table, cache)
70+
end
71+
end
72+
cache[cache_key] = output
73+
return output
74+
end
75+
76+
function merge(t1, t2)
77+
local output = {}
78+
for _, v in ipairs(t1) do
79+
table.insert(output, v)
80+
end
81+
82+
for _, v in ipairs(t2) do
83+
table.insert(output, v)
84+
end
85+
return output
86+
end
87+
88+
function repeat_data(t, count, sep)
89+
if type(t) == "table" then
90+
local output = {}
91+
local del = {}
92+
if sep ~= nil then
93+
del = sep
94+
end
95+
for i = 1, count do
96+
output = merge(merge(output, t), del)
97+
end
98+
return output
99+
else
100+
local output = t
101+
for i = 1, count - 1 do
102+
if sep ~= nil then
103+
output = output .. sep
104+
end
105+
output = output .. t
106+
end
107+
return output
108+
end
109+
end
110+
111+
function table.list_copy(t)
112+
local output = {}
113+
for _, v in ipairs(t) do
114+
table.insert(output, v)
115+
end
116+
return output
117+
end
118+
119+
local total = 0
120+
121+
while true do
122+
local line = io.read("l")
123+
if line == nil then break; end
124+
local data, parity_list = parse_input(line)
125+
data = repeat_data(data, 5, "?")
126+
parity_list = repeat_data(parity_list, 5)
127+
total = total + solve(data, parity_list)
128+
end
129+
130+
print(total)

0 commit comments

Comments
 (0)