From 58a63ee504f58e8ad42b2ae9f2d3bdddeec73957 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 9 Dec 2022 03:35:07 -0500 Subject: add day 9 (c++) --- day9/part1.cpp | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 day9/part1.cpp (limited to 'day9/part1.cpp') diff --git a/day9/part1.cpp b/day9/part1.cpp new file mode 100644 index 0000000..ecfbdd6 --- /dev/null +++ b/day9/part1.cpp @@ -0,0 +1,55 @@ +#include +#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; + + steps.emplace_back(line.front(), stoi(line.substr(2))); + } + + int hx = 0, hy = 0, tx = 0, ty = 0; + std::list> locs; + locs.emplace_back(0, 0); + + for (const auto& [dir, count] : steps) { + for (int i = 0; i < count; ++i) { + //std::cout << hx << ", " << hy << " " << tx << ", " << ty << std::endl; + + if (dir == 'U') + ++hy; + else if (dir == 'D') + --hy; + else if (dir == 'R') + ++hx; + else if (dir == 'L') + --hx; + + if (std::abs(hx - tx) > 1 || std::abs(hy - ty) > 1) { + if (hx != tx) + tx += hx > tx ? 1 : -1; + if (hy != ty) + ty += hy > ty ? 1 : -1; + + if (std::find(locs.cbegin(), locs.cend(), std::pair{tx, ty}) == locs.cend()) { + locs.emplace_back(tx, ty); + } + } + } + } + + std::cout << locs.size() << std::endl; + + return 0; +} + -- cgit v1.2.3