aocpp/2019/07.cpp

93 lines
2.8 KiB
C++
Raw Normal View History

2022-11-03 12:53:10 -07:00
#include <algorithm>
#include <concepts>
2022-11-03 08:15:17 -07:00
#include <iostream>
2022-11-03 12:53:10 -07:00
#include <optional>
2022-11-03 08:15:17 -07:00
#include <utility>
#include <vector>
2022-11-13 11:42:40 -08:00
#include <doctest.h>
#include <aocpp/Startup.hpp>
2022-11-04 09:38:01 -07:00
#include <intcode/intcode.hpp>
2022-11-03 12:53:10 -07:00
using namespace intcode;
2022-11-03 08:15:17 -07:00
namespace {
2022-11-03 14:43:47 -07:00
template <class R> auto Controller(Machine machine, R const &params) {
auto& i = std::get<Input>(Step(machine)).input;
2022-11-03 12:53:10 -07:00
std::vector<Machine> amps;
amps.reserve(params.size());
2022-11-03 12:53:10 -07:00
for (auto p : params) {
i = p;
2022-11-05 15:06:54 -07:00
amps.push_back(machine);
2022-11-03 12:53:10 -07:00
}
return amps;
2022-11-03 08:15:17 -07:00
}
2022-11-03 12:53:10 -07:00
template <class R>
2022-11-03 14:43:47 -07:00
auto Feed(R &&amps, ValueType start) -> std::optional<ValueType> {
2022-11-03 12:53:10 -07:00
for (auto &m : amps) {
2022-11-05 21:48:52 -07:00
auto e = Step(m);
if (auto i = std::get_if<Input>(&e)) {
2022-11-06 19:46:43 -08:00
i->input = start;
2022-11-05 15:06:54 -07:00
start = StepOutput(m);
2022-11-03 12:53:10 -07:00
} else {
return {};
2022-11-03 08:15:17 -07:00
}
2022-11-03 12:53:10 -07:00
}
return {start};
}
2022-11-03 08:15:17 -07:00
2022-11-13 11:42:40 -08:00
auto Compute1(Machine machine, std::vector<ValueType> const &params)
2022-11-03 14:43:47 -07:00
-> ValueType {
return *Feed(Controller(std::move(machine), params), 0);
2022-11-03 08:15:17 -07:00
}
2022-11-13 11:42:40 -08:00
auto Compute2(Machine machine, std::vector<ValueType> const &params)
2022-11-03 14:43:47 -07:00
-> ValueType {
auto amps = Controller(std::move(machine), params);
ValueType last = 0;
while (auto next = Feed(amps, last)) {
2022-11-03 12:53:10 -07:00
last = *next;
}
return last;
}
2022-11-03 14:43:47 -07:00
template <std::invocable<Machine, std::vector<ValueType> const &> F>
2022-11-13 11:42:40 -08:00
auto Optimize(Machine machine, std::vector<ValueType> params, F f) {
2022-11-03 14:43:47 -07:00
ValueType best = 0;
2022-11-03 12:53:10 -07:00
do {
best = std::max(best, f(machine, params));
} while (std::next_permutation(params.begin(), params.end()));
return best;
2022-11-03 08:15:17 -07:00
}
2022-11-13 11:42:40 -08:00
auto Part1(Machine machine) -> ValueType {
return Optimize(std::move(machine), {0, 1, 2, 3, 4}, Compute1);
}
auto Part2(Machine machine) -> ValueType {
return Optimize(std::move(machine), {5, 6, 7, 8, 9}, Compute2);
}
2022-11-03 12:53:10 -07:00
} // namespace
2022-11-13 11:42:40 -08:00
TEST_SUITE("documented examples") {
TEST_CASE("part 1") {
auto eval = [](std::vector<ValueType> pgm) { return Part1(Machine{pgm}); };
REQUIRE(eval({3,15,3,16,1002,16,10,16,1,16,15,15,4,15,99,0,0}) == 43210);
REQUIRE(eval({3,23,3,24,1002,24,10,24,1002,23,-1,23,101,5,23,23,1,24,23,23,4,23,99,0,0}) == 54321);
REQUIRE(eval({3,31,3,32,1002,32,10,32,1001,31,-2,31,1007,31,0,33,1002,33,7,33,1,33,31,31,1,32,31,31,4,31,99,0,0,0}) == 65210);
}
TEST_CASE("part 2") {
auto eval = [](std::vector<ValueType> pgm) { return Part2(Machine{pgm}); };
REQUIRE(eval({3,26,1001,26,-4,26,3,27,1002,27,2,27,1,27,26,27,4,27,1001,28,-1,28,1005,28,6,99,0,0,5}) == 139629729);
REQUIRE(eval({3,52,1001,52,-5,52,3,53,1,52,56,54,1007,54,5,55,1005,55,26,1001,54,-5,54,1105,1,12,1,53,54,53,1008,54,0,55,1001,55,1,55,2,53,55,53,4,53,1001,56,-1,56,1005,56,6,99,0,0,0,0,10})== 18216);
}
}
2022-11-06 11:33:20 -08:00
auto main(int argc, char** argv) -> int {
2022-11-07 21:00:14 -08:00
auto machine = Machine{ParseStream(aocpp::Startup(argc, argv))};
2022-11-13 11:42:40 -08:00
std::cout << "Part 1: " << Part1(machine) << std::endl;
std::cout << "Part 2: " << Part2(std::move(machine)) << std::endl;
2022-11-03 12:53:10 -07:00
}