标签:nyoj-305 表达式求值 模拟
Dr.Kong设计的机器人卡多掌握了加减法运算以后,最近又学会了一些简单的函数求值,比如,它知道函数min(20,23)的值是20 ,add(10,98) 的值是108等等。经过训练,Dr.Kong设计的机器人卡多甚至会计算一种嵌套的更复杂的表达式。
假设表达式可以简单定义为:
1. 一个正的十进制数 x 是一个表达式。
2. 如果 x 和 y 是 表达式,则 函数min(x,y )也是表达式,其值为x,y 中的最小数。
3. 如果 x 和 y 是 表达式,则 函数max(x,y )也是表达式,其值为x,y 中的最大数。
4.如果 x 和 y 是 表达式,则 函数add(x,y )也是表达式,其值为x,y 之和。
例如, 表达式 max(add(1,2),7) 的值为 7。
请你编写程序,对于给定的一组表达式,帮助 Dr.Kong 算出正确答案,以便校对卡多计算的正误。
3 add(1,2) max(1,999) add(min(1,1000),add(100,99))
3 999 200
#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<string> #include<algorithm> #include<stack> #define ll long long using namespace std; char s[333]; int st[1010]; int num[333]; int a[333]; int change(char c,int a,int b) { switch(c) { case 'd': return a+b; case 'n': return min(a,b); case 'x': return max(a,b); } } void solve() { int n=strlen(s); int ans=0; int len=0; memset(a,0,sizeof a); memset(num,0,sizeof num); for(int i=0; i<n; i++) { if(s[i]>='0'&&s[i]<='9') { int x=i; while(s[i]>='0'&&s[i]<='9') { a[x]=a[x]*10+s[i]-'0'; num[x]++; i++; } i--; } } for(int i=0; i<n; i++) { if(s[i]=='(') { st[len++]=i; continue; } if(s[i]==')') { int l=st[len-1]; int r=l+num[l+1]+2; a[l-3]=change(s[l-1],a[l+1],a[r]); num[l-3]=6+num[l+1]+num[r]; len--; } } cout<<a[0]<<endl; } int main() { int t; cin>>t; while(t--) { scanf("%s",s); solve(); } return 0; }
标签:nyoj-305 表达式求值 模拟
原文地址:http://blog.csdn.net/acm_baihuzi/article/details/45121123