aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-12-15 08:15:23 -0500
committerClyne Sullivan <clyne@bitgloo.com>2022-12-15 08:15:23 -0500
commitb6e660ac61a927e517b355cd8d20ddcabc3c9b75 (patch)
tree1891da465b2d0aa023437a9450190c94e36db794
parentba888c6728558891e9ce068bc5f5b43b357e51b6 (diff)
day15: part 1 c++, partial part 2
-rw-r--r--day15/part1.cpp50
-rw-r--r--day15/part2.cpp60
2 files changed, 110 insertions, 0 deletions
diff --git a/day15/part1.cpp b/day15/part1.cpp
new file mode 100644
index 0000000..fb53753
--- /dev/null
+++ b/day15/part1.cpp
@@ -0,0 +1,50 @@
+#include <cstdio>
+#include <iostream>
+#include <set>
+#include <string>
+
+constexpr long Y = 2000000;
+
+int main()
+{
+ std::set<int> xs;
+ std::set<int> bs;
+ long px, py, bx, by;
+
+ do {
+ std::string line;
+ std::getline(std::cin, line);
+ if (std::cin.eof())
+ break;
+
+ auto a = sscanf(line.c_str(),
+ "Sensor at x=%ld, y=%ld: closest beacon is at x=%ld, y=%ld",
+ &px, &py, &bx, &by);
+
+ std::cout << px << ' ' << py << ' ' << bx << ' ' << by;
+
+ if (by == Y)
+ bs.insert(bx);
+
+ long ic = std::abs(px - bx) + std::abs(py - by);
+
+ if (Y < py - ic || Y > py + ic)
+ continue;
+
+ long spr = (ic - std::abs(py - Y));
+ for (long j = 0; j <= spr; ++j) {
+ xs.insert(px + j);
+ xs.insert(px - j);
+ }
+
+ std::cout << " -> " << xs.size() << std::endl;
+ } while (1);
+
+ for (auto& b : bs)
+ xs.erase(b);
+
+ std::cout << "Part 1: " << xs.size() << std::endl;
+
+ return 0;
+}
+
diff --git a/day15/part2.cpp b/day15/part2.cpp
new file mode 100644
index 0000000..6a80e54
--- /dev/null
+++ b/day15/part2.cpp
@@ -0,0 +1,60 @@
+#include <cstdio>
+#include <iostream>
+#include <string>
+#include <vector>
+
+struct Sensor
+{
+ long x, y, power;
+
+ Sensor(long xx, long yy, long pp):
+ x(xx), y(yy), power(pp) {}
+};
+
+int main()
+{
+ std::vector<Sensor> sensors;
+ long px, py, bx, by;
+
+ do {
+ std::string line;
+ std::getline(std::cin, line);
+ if (std::cin.eof())
+ break;
+
+ auto a = sscanf(line.c_str(),
+ "Sensor at x=%ld, y=%ld: closest beacon is at x=%ld, y=%ld",
+ &px, &py, &bx, &by);
+
+ long power = std::abs(px - bx) + std::abs(py - by);
+ sensors.emplace_back(px, py, power);
+ } while (1);
+
+ std::cout << "# of sensors: " << sensors.size() << std::endl;
+
+ for (long y = 0; y <= 4000000; ++y) {
+ std::cout << "\r \r" << y;
+ fflush(stdout);
+ for (long x = 0; x <= 4000000; ++x) {
+ bool h = false;
+
+ for (auto& s : sensors) {
+ auto dist = std::abs(x - s.x) + std::abs(y - s.y);
+ if (dist <= s.power) {
+ long spr = (dist - std::abs(s.y - y));
+ x += spr - std::abs(s.x - x);
+ h = true;
+ break;
+ }
+ }
+
+ if (!h) {
+ std::cout << std::endl << x << ", " << y << std::endl;
+ return 0;
+ }
+ }
+ }
+
+ return 0;
+}
+