aocpp/2019/19.cpp

54 lines
1.1 KiB
C++
Raw Normal View History

2022-11-12 21:22:07 -08:00
#include <iostream>
#include <aocpp/Coord.hpp>
#include <aocpp/Startup.hpp>
#include <intcode/intcode.hpp>
using namespace aocpp;
using namespace intcode;
namespace {
class Scanner {
Machine machine_;
public:
Scanner(Machine machine) : machine_{std::move(machine)} {}
auto operator()(ValueType x, ValueType y) const -> bool {
Machine m {machine_};
StepInput(m, x);
StepInput(m, y);
return StepOutput(m);
}
};
auto Part1(Scanner const& scanner) {
std::int64_t count {};
for (std::int64_t y = 0; y < 50; y++) {
for (std::int64_t x = 0; x < 50; x++) {
if (scanner(x, y)) {
count++;
}
}
}
return count;
}
auto Part2(Scanner const& scanner) {
ValueType x = 0;
for(ValueType y = 99;; y++){
for (; !scanner(x, y); x++);
if (scanner(x+99,y-99)) { return 10000 * x + y-99; }
}
}
} // namespace
2023-01-31 09:15:15 -08:00
auto Main(std::istream & in, std::ostream & out) -> void
2023-01-31 08:58:42 -08:00
{
auto const scanner = Scanner{Machine{ParseStream(in)}};
2023-01-31 09:15:15 -08:00
out << "Part 1: " << Part1(scanner) << std::endl;
out << "Part 2: " << Part2(scanner) << std::endl;
2022-11-12 21:22:07 -08:00
}