summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Igne <undyamon@disroot.org>2023-12-19 02:06:02 +0100
committerFederico Igne <undyamon@disroot.org>2023-12-19 02:06:02 +0100
commite3c9f0c73077de51167491ca1ba4d5ccba005435 (patch)
tree792f18313a1e1fdbe2d0e97356631acd7ca65386
parentfe385ca1e5cd219478aef8f982d07182e4c8ad0d (diff)
downloadaoc-e3c9f0c73077de51167491ca1ba4d5ccba005435.tar.gz
aoc-e3c9f0c73077de51167491ca1ba4d5ccba005435.zip
aoc(2318): Lavaduct Lagoon
-rw-r--r--2023/18/Makefile19
-rw-r--r--2023/18/resources/input_small.txt14
-rw-r--r--2023/18/src/part1.cpp62
-rw-r--r--2023/18/src/part2.cpp63
-rw-r--r--2023/include/util.h39
5 files changed, 197 insertions, 0 deletions
diff --git a/2023/18/Makefile b/2023/18/Makefile
new file mode 100644
index 0000000..af6a294
--- /dev/null
+++ b/2023/18/Makefile
@@ -0,0 +1,19 @@
1CXXFLAGS := -std=c++17
2CPPFLAGS := -I../include
3EXE := part1 part2
4
5.PHONY: all clean configure
6
7all: $(EXE)
8
9configure:
10 bear -- $(MAKE) all
11
12%.o: %.cpp
13 $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $< -o $@
14
15clean:
16 rm -rf $(EXE) src/*.o compile_commands.json
17
18%: src/%.o
19 $(CXX) $^ -o $@
diff --git a/2023/18/resources/input_small.txt b/2023/18/resources/input_small.txt
new file mode 100644
index 0000000..fc7612e
--- /dev/null
+++ b/2023/18/resources/input_small.txt
@@ -0,0 +1,14 @@
1R 6 (#70c710)
2D 5 (#0dc571)
3L 2 (#5713f0)
4D 2 (#d2c081)
5R 2 (#59c680)
6D 2 (#411b91)
7L 5 (#8ceee2)
8U 2 (#caa173)
9L 1 (#1b58a2)
10U 2 (#caa171)
11R 2 (#7807d2)
12U 3 (#a77fa3)
13L 2 (#015232)
14U 2 (#7a21e3)
diff --git a/2023/18/src/part1.cpp b/2023/18/src/part1.cpp
new file mode 100644
index 0000000..b7c9e09
--- /dev/null
+++ b/2023/18/src/part1.cpp
@@ -0,0 +1,62 @@
1#include <iostream>
2#include <fstream>
3#include <sstream>
4#include <deque>
5#include <vector>
6#include <tuple>
7
8#include "util.h"
9
10using Cmd = std::tuple<char,int>;
11using Pos = std::pair<int,int>;
12using Polygon = std::vector<Pos>;
13
14std::vector<Cmd> parse(const char* file)
15{
16 std::vector<Cmd> cmds;
17 if (std::ifstream input{ file }; input.is_open())
18 {
19 char dir; int steps;
20 std::string line;
21 while (not std::getline(input,line).eof())
22 {
23 std::stringstream in{ line };
24 in >> dir >> steps;
25 cmds.push_back({ dir, steps });
26 }
27 }
28 return cmds;
29}
30
31std::pair<int,Polygon> compute_border(Pos pos, const std::vector<Cmd>& cmds)
32{
33 Polygon poly;
34 int border{};
35 auto [x, y] = pos;
36 for(const auto& cmd : cmds)
37 {
38 auto [dir, steps] = cmd;
39 switch (dir)
40 {
41 case 'R': y += steps; break;
42 case 'D': x += steps; break;
43 case 'L': y -= steps; break;
44 case 'U': x -= steps;
45 }
46 poly.push_back({ x, y });
47 border += steps;
48 }
49 return { border, std::move(poly) };
50}
51
52
53
54int main(int argc, char* argv[])
55{
56 auto cmds = parse(argv[1]);
57 auto [border, polygon] = compute_border({ 0, 0 }, cmds);
58 int area = util::shoelace<int>(polygon.cbegin(), polygon.cend());
59
60 std::cout << border + util::pick(area, border) << std::endl;
61 return 0;
62}
diff --git a/2023/18/src/part2.cpp b/2023/18/src/part2.cpp
new file mode 100644
index 0000000..e9b6c02
--- /dev/null
+++ b/2023/18/src/part2.cpp
@@ -0,0 +1,63 @@
1#include <iostream>
2#include <fstream>
3#include <sstream>
4#include <vector>
5#include <tuple>
6
7#include "util.h"
8
9enum Dir { R = 0, D, L, U };
10using Cmd = std::tuple<Dir,long>;
11using Pos = std::pair<long,long>;
12using Polygon = std::vector<Pos>;
13
14std::vector<Cmd> parse(const char* file)
15{
16 std::vector<Cmd> cmds;
17 if (std::ifstream input{ file }; input.is_open())
18 {
19 Dir dir; int steps; std::string color;
20 std::string line;
21 while (not std::getline(input,line).eof())
22 {
23 std::stringstream in{ line };
24 in >> util::skip<char> >> util::skip<int> >> color;
25 steps = std::stoi(color.substr(2, 5), nullptr, 16);
26 dir = static_cast<Dir>(std::stoi(color.substr(7, 1)));
27 cmds.push_back({ dir, steps });
28 }
29 }
30 return cmds;
31}
32
33std::pair<long,Polygon> compute_border(Pos pos, const std::vector<Cmd>& cmds)
34{
35 Polygon poly;
36 long border{};
37 auto [x, y] = pos;
38 for(const auto& cmd : cmds)
39 {
40 auto [dir, steps] = cmd;
41 switch (dir)
42 {
43 case R: y += steps; break;
44 case D: x += steps; break;
45 case L: y -= steps; break;
46 case U: x -= steps;
47 }
48 poly.push_back({ x, y });
49 border += steps;
50 }
51 return { border, std::move(poly) };
52}
53
54int main(int argc, char* argv[])
55{
56 auto cmds = parse(argv[1]);
57 auto [border, polygon] = compute_border({ 0, 0 }, cmds);
58 long area = util::shoelace<long>(polygon.cbegin(), polygon.cend());
59
60 std::cout << border + util::pick(area, border) << std::endl;
61 return 0;
62}
63
diff --git a/2023/include/util.h b/2023/include/util.h
index e396e3c..3152719 100644
--- a/2023/include/util.h
+++ b/2023/include/util.h
@@ -6,6 +6,7 @@
6#include <stdexcept> 6#include <stdexcept>
7#include <string> 7#include <string>
8#include <string_view> 8#include <string_view>
9#include <type_traits>
9 10
10namespace util 11namespace util
11{ 12{
@@ -119,6 +120,44 @@ std::basic_istream<CharT, Traits>& skip(std::basic_istream<CharT, Traits>& strea
119 return stream; 120 return stream;
120} 121}
121 122
123/* @brief Compute the area of a planar simple polygon.
124 *
125 * @tparam Int integral coordinate type.
126 * @param first start of an iterator over pairs of 'Int'.
127 * @param last end of an iterator over pairs of 'Int'.
128 *
129 * @see https://en.wikipedia.org/wiki/Shoelace_formula#Triangle_formula
130 */
131template<typename Int, typename InputIt, typename = std::enable_if_t<std::is_integral_v<Int>,Int>>
132Int shoelace(InputIt first, InputIt last)
133{
134 Int result{};
135 auto [x1, y1] = *first;
136 while(first++ != last)
137 {
138 auto [x2, y2] = *first;
139 result += x1 * y2 - x2 * y1;
140 x1 = x2; y1 = y2;
141 }
142 return std::abs(result / 2);
143}
144
145/* @brief Return the number of integral coordinates inside a planar
146 * simple polygon.
147 *
148 * @tparam Int integral return type.
149 * @param area the area of the polygon.
150 * @param border the number of integral coordinates on the polygon's
151 * boundary.
152 *
153 * @see https://en.wikipedia.org/wiki/Pick%27s_theorem#Formula
154 */
155template<typename Int = int, typename = std::enable_if_t<std::is_integral_v<Int>,Int>>
156Int pick(Int area, Int border)
157{
158 return area - border / 2 + 1;
159}
160
122} // namespace util 161} // namespace util
123 162
124#endif //UTIL_H 163#endif //UTIL_H