NOIP 普及组 2013 表达式求值

时间:2021-09-07 00:22:23

传送门

https://www.cnblogs.com/violet-acmer/p/9898636.html

题解:

  哇哇哇,又是一发暴力AC.

  用字符数组存储表达式。

  然后将表达式中的 数字 与 运算符号 分开。

  两次for( )循环

    第一次循环找到所有的 ' * ' 运算符,并把 ' * ' 前的整数乘到 ' * ' 后的整数上,并将 ' * ' 前的整数赋值为 0;

    第二次遍历,将所有的数加起来就是答案。

  所有中间结果别忘了膜 10000,最终答案也要膜 10000

AC代码:

#include<bits/stdc++.h>
using namespace std;
const int maxn=2e6;
const int mod=; char s[maxn];
char op[maxn];
int num[maxn]; int Trans()//将整数与运算符分离
{
int tot=;
int len=strlen(s);
int v=;
for(int i=;i < len;++i)
{
if(s[i] == '*' || s[i] == '+')
{
op[++tot]=s[i];
num[tot]=v;
v=;
}
else
v=v*+(s[i]-'');
}
num[++tot]=v;//不要忘了存储最后一个整数
return tot;
}
void Solve()
{
int tot=Trans();
int res=;
//把 ' * ' 前的整数乘到 ' * ' 后的整数上,并将 ' * ' 前的整数赋值为 0
for(int i=;i < tot;++i)
if(op[i] == '*')
num[i+]=num[i+]%mod*(num[i]%mod),num[i]=;
for(int i=;i <= tot;++i)
res=res%mod+num[i];
printf("%d\n",res%mod);
}
int main()
{
scanf("%s",s);
Solve();
}