day15: part 1 c++, partial part 2
parent
ba888c6728
commit
b6e660ac61
@ -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;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue