aboutsummaryrefslogtreecommitdiffstats
path: root/day9/part1.cpp
blob: 61b6f8d5d4a84b90cc019c38fdbb52d019ef5b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <algorithm>
#include <iostream>
#include <string>
#include <tuple>
#include <vector>

int main()
{
    std::vector<std::pair<char, int>> steps;
    std::vector<int> hashes (10000, 0);

    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;

    for (const auto& [dir, count] : steps) {
        for (int i = 0; i < count; ++i) {
            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;

                int hash = tx * 1000 + ty;
                for (int i = 0; i < hashes.size(); ++i) {
                    if (hashes[i] == 0) {
                        hashes[i] = hash;
                        break;
                    } else if (hashes[i] == hash) {
                        break;
                    }
                }
            }
        }
    }

    int count = 0;
    for (int i = 0; i < hashes.size(); ++i) {
        ++count;
        if (hashes[i] == 0)
            break;
    }
    std::cout << count << std::endl;

    return 0;
}