aboutsummaryrefslogtreecommitdiffstats
path: root/day10/both.cpp
blob: c51ef362843c4956ee5e7807999b1548ac9408fe (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
#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;
}