diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-12-10 08:48:36 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-12-10 08:48:36 -0500 |
commit | 9e9f98d154d16243f28c24d98a5e0448298618b3 (patch) | |
tree | 5c3e900804f33d61668955c91c9b57419f62b62b /day10/both.cpp | |
parent | 75961ee28398eeef6756670153ea45b933e81269 (diff) |
add day 10
Diffstat (limited to 'day10/both.cpp')
-rw-r--r-- | day10/both.cpp | 60 |
1 files changed, 60 insertions, 0 deletions
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 <algorithm> +#include <iostream> +#include <string> +#include <tuple> +#include <vector> + +int main() +{ + std::vector<std::pair<char, int>> 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; +} + |