diff options
author | Federico Igne <undyamon@disroot.org> | 2023-12-19 02:06:02 +0100 |
---|---|---|
committer | Federico Igne <undyamon@disroot.org> | 2023-12-19 02:06:02 +0100 |
commit | e3c9f0c73077de51167491ca1ba4d5ccba005435 (patch) | |
tree | 792f18313a1e1fdbe2d0e97356631acd7ca65386 | |
parent | fe385ca1e5cd219478aef8f982d07182e4c8ad0d (diff) | |
download | aoc-e3c9f0c73077de51167491ca1ba4d5ccba005435.tar.gz aoc-e3c9f0c73077de51167491ca1ba4d5ccba005435.zip |
aoc(2318): Lavaduct Lagoon
-rw-r--r-- | 2023/18/Makefile | 19 | ||||
-rw-r--r-- | 2023/18/resources/input_small.txt | 14 | ||||
-rw-r--r-- | 2023/18/src/part1.cpp | 62 | ||||
-rw-r--r-- | 2023/18/src/part2.cpp | 63 | ||||
-rw-r--r-- | 2023/include/util.h | 39 |
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 @@ | |||
1 | CXXFLAGS := -std=c++17 | ||
2 | CPPFLAGS := -I../include | ||
3 | EXE := part1 part2 | ||
4 | |||
5 | .PHONY: all clean configure | ||
6 | |||
7 | all: $(EXE) | ||
8 | |||
9 | configure: | ||
10 | bear -- $(MAKE) all | ||
11 | |||
12 | %.o: %.cpp | ||
13 | $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $< -o $@ | ||
14 | |||
15 | clean: | ||
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 @@ | |||
1 | R 6 (#70c710) | ||
2 | D 5 (#0dc571) | ||
3 | L 2 (#5713f0) | ||
4 | D 2 (#d2c081) | ||
5 | R 2 (#59c680) | ||
6 | D 2 (#411b91) | ||
7 | L 5 (#8ceee2) | ||
8 | U 2 (#caa173) | ||
9 | L 1 (#1b58a2) | ||
10 | U 2 (#caa171) | ||
11 | R 2 (#7807d2) | ||
12 | U 3 (#a77fa3) | ||
13 | L 2 (#015232) | ||
14 | U 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 | |||
10 | using Cmd = std::tuple<char,int>; | ||
11 | using Pos = std::pair<int,int>; | ||
12 | using Polygon = std::vector<Pos>; | ||
13 | |||
14 | std::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 | |||
31 | std::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 | |||
54 | int 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 | |||
9 | enum Dir { R = 0, D, L, U }; | ||
10 | using Cmd = std::tuple<Dir,long>; | ||
11 | using Pos = std::pair<long,long>; | ||
12 | using Polygon = std::vector<Pos>; | ||
13 | |||
14 | std::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 | |||
33 | std::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 | |||
54 | int 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 | ||
10 | namespace util | 11 | namespace 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 | */ | ||
131 | template<typename Int, typename InputIt, typename = std::enable_if_t<std::is_integral_v<Int>,Int>> | ||
132 | Int 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 | */ | ||
155 | template<typename Int = int, typename = std::enable_if_t<std::is_integral_v<Int>,Int>> | ||
156 | Int 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 |