aboutsummaryrefslogtreecommitdiff
path: root/works/life/2020-algorithm-contest/code/5.cpp
blob: 24d3fd6b150b432cc2f4abf1d9ce9457864958a8 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include <iostream>
#include <string>
#include <vector>
#include <cassert>

enum class Op
{
    Add,
    Sub,
    Mul,
    Div
};

struct OpInfo
{
    explicit OpInfo(Op op) : op(op), count(0) {}

    Op op;
    int count; // operand count
};

int main()
{
    std::string expr;
    std::getline(std::cin, expr);

    std::vector<int> operands;
    std::vector<OpInfo> op_infos;

    for (auto c : expr)
    {
        if (c == '+')
        {
            op_infos.emplace_back(Op::Add);
        }
        else if (c == '-')
        {
            op_infos.emplace_back(Op::Sub);
        }
        else if (c == '*')
        {
            op_infos.emplace_back(Op::Mul);
        }
        else if (c == '/')
        {
            op_infos.emplace_back(Op::Div);
        }
        else if (c == '(')
        {
            if (!op_infos.empty())
                op_infos.back().count++;
        }
        else if (c >= '0' && c <= '9')
        {
            operands.push_back(c - '0');
            op_infos.back().count++;
        }
        else if (c == ')')
        {
            const auto &info = op_infos.back();
            if ((info.op == Op::Sub || info.op == Op::Div) && info.count != 2)
            {
                std::cerr << "Sub or Div Op has not 2 operands.";
                return 1;
            }

            switch (info.op)
            {
            case Op::Add:
            {
                int r = 0;
                for (int i = 0; i < info.count; i++)
                {
                    r += operands.back();
                    operands.pop_back();
                }
                operands.push_back(r);
                op_infos.pop_back();
                break;
            }
            case Op::Sub:
            {
                int a = operands.back();
                operands.pop_back();
                int b = operands.back();
                operands.pop_back();
                operands.push_back(b - a);
                op_infos.pop_back();
                break;
            }
            case Op::Mul:
            {
                int r = 1;
                for (int i = 0; i < info.count; i++)
                {
                    r *= operands.back();
                    operands.pop_back();
                }
                operands.push_back(r);
                op_infos.pop_back();
                break;
            }
            case Op::Div:
            {
                int a = operands.back();
                operands.pop_back();
                int b = operands.back();
                operands.pop_back();
                operands.push_back(b / a);
                op_infos.pop_back();
                break;
            }
            default:
                std::terminate();
            }
        }
    }

    if (operands.size() != 1)
    {
        std::cerr << "final operand count is not 1, but " << operands.size();
        return 1;
    }
    if (!op_infos.empty())
    {
        std::cerr << "final op_info is not empty";
        return 1;
    }

    std::cout << operands.front();

    return 0;
}