-
Notifications
You must be signed in to change notification settings - Fork 0
/
10510_0516062.cpp
105 lines (85 loc) · 1.48 KB
/
10510_0516062.cpp
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
#include <bits/stdc++.h>
using namespace std;
typedef long long int lli;
lli DoCount(char sym, lli a, lli b)
{
switch(sym)
{
case '*':
return (a*b) % 1000000007;
case '+':
return (a+b) % 1000000007;
}
}
int main()
{
char input[3000];
while(fgets(input,sizeof(input),stdin))
{
stack<char> symbol;
stack<lli> number;
symbol.push('(');
strtok(input,"\n");
int t;
for(t=0;input[t];t++)
{
if(input[t]>='0' && input[t]<='9')
{
number.push(input[t]-'0');
}
else
{
if(input[t]==')')
{
// do count until (
while(symbol.top()!='(')
{
int a=number.top();
number.pop();
int b=number.top();
number.pop();
number.push(DoCount(symbol.top(),a,b));
symbol.pop();
}
symbol.pop();
}
else
{
switch(input[t])
{
case '+':
{
while(symbol.top()!='(')
{
lli a=number.top();
number.pop();
lli b=number.top();
number.pop();
number.push(DoCount(symbol.top(),a,b));
symbol.pop();
}
break;
}
case '*':
{
break;
}
}
symbol.push(input[t]);
}
}
}
while( !symbol.empty() && symbol.top()!='(' && !number.empty())
{
int a=number.top();
number.pop();
int b=number.top();
number.pop();
number.push(DoCount(symbol.top(),a,b));
symbol.pop();
}
if(number.empty()) printf("0\n");
else printf("%lld\n",number.top());
}
return 0;
}