From 9e9f98d154d16243f28c24d98a5e0448298618b3 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 10 Dec 2022 08:48:36 -0500 Subject: add day 10 --- day10/both.cpp | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 day10/both.cpp (limited to 'day10/both.cpp') diff --git a/day10/both.cpp b/day10/both.cpp new file mode 100644 index 0000000..c51ef36 --- /dev/null +++ b/day10/both.cpp @@ -0,0 +1,60 @@ +#include +#include +#include +#include +#include + +int main() +{ + std::vector> steps; + + while (1) { + std::string line; + std::getline(std::cin, line); + if (std::cin.eof()) + break; + + int n = line.size() < 6 ? 0 : stoi(line.substr(5)); + steps.emplace_back(line.front(), n); + } + + int cx = 0; + + int cycle = 1; + int adding = 0; + int X = 1; + int strength = 0; + for (int i = 0; i < steps.size();) { + const auto& [ins, n] = steps[i]; + + if (abs(X - cx) < 2) + std::cout << '#'; + else + std::cout << '.'; + + if (++cx == 40) { + std::cout << std::endl; + cx = 0; + } + + ++cycle; + + if (adding != 0) { + X += adding; + adding = 0; + ++i; + } else if (ins == 'a') { + adding = n; + } else if (ins == 'n') { + ++i; + } + + if ((cycle - 20) % 40 == 0) + strength += cycle * X; + } + + std::cout << "strength: " << strength << std::endl; + + return 0; +} + -- cgit v1.2.3