[河南省ACM省赛-第四届] 表达式求值(nyoj 305)

栈的模拟应用:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cstdlib>
#include<algorithm>
#include<stack>
using namespace std;

string getPostfixExp(string s)
{
    stack<char> sta;// d n x
    string exp;
    int len = s.size();
    for(int i=0; i<len; i++){
        char ch = s[i];
        if(ch == ‘a‘ || ch == ‘m‘) { //如果是字母
            i += 2;
            sta.push(s[i]);
        } else if(ch == ‘(‘){
            sta.push(ch);
        } else if(ch == ‘)‘){//此时顶一定是(
            sta.pop();//弹走(
            exp += " ";
            exp += sta.top();
            sta.pop();
        } else if(ch != ‘,‘){ //数字
            string num;
            while(s[i] >= ‘0‘ && s[i] <= ‘9‘){
                num += s[i++];
            }
            if(exp[0] != NULL)//后缀表达式的第一个一定是数字,用此来避免首位空格
                exp += " ";
            exp += num;
            i--;
        }
    }
    return exp;
}

int calculate(string post)
{
    stack<int>sta;
    int len = post.size();
    for(int i=0; i<len; i++){
        int ch = post[i];
        if(ch >= ‘a‘) {//如果是运算符
            int a = sta.top(); sta.pop();
            int b = sta.top(); sta.pop();
            if(ch == ‘d‘)
                sta.push(a+b);
            else if(ch == ‘x‘)
                sta.push(max(a, b));
            else if(ch == ‘n‘)
                sta.push(min(a, b));
        } else if(ch != ‘ ‘) {//如果为数字
            int num = 0;
            while(post[i] >= ‘0‘ && post[i] <= ‘9‘)
                num = num*10+post[i++]-‘0‘;
            sta.push(num);
            i--;
        }
    }
    return sta.top();
}
int main()
{
    freopen("d:\\in.txt", "r", stdin);
    string s;
    int t;
    cin>>t;
    while(t--) {
        cin>>s;
        string post = getPostfixExp(s);
        cout<<calculate(post)<<endl;
    }
    return 0;
}
时间: 2024-12-16 08:10:50

[河南省ACM省赛-第四届] 表达式求值(nyoj 305)的相关文章

[河南省ACM省赛-第四届] 序号互换 (nyoj 303)

相似与27进制的转换 #include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cstdlib> #include<algorithm> #include<stack> using namespace std; int main(){ int t; string s; cin>>t; while(t--) {

[河南省ACM省赛-第四届] Substring (nyoj 308)

练习使用字符串函数了. 1.字串的反转也是它的字串,2.最长,3.最先出现 string: #include<iostream> #include<cstdio> #include<cstring> #include<string> #include<algorithm> using namespace std; int main() { int t, n; string s; cin>>t; while(t--){ cin>&

[河南省ACM省赛-第三届] 房间安排 (nyoj 168)

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=168 分析:找到一天中需要最多的房间即可 #include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; #define N 200 int day[N];//day[i] 第i天的最多房间数 int main() { fre

[河南省ACM省赛-第三届] AMAZING AUCTION (nyoj 251)

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=251 规则: 1.若某竞标价唯一,则胜出 2.若不存在唯一竞标价,则投标次数最少竞标价中标,存在多个时,选择价钱最低且最先投此价钱的为中标 #include<iostream> #include<cstdio> #include<cstring> using namespace std; #define N 102 #define M 1002 struct N

[河南省ACM省赛-第三届] BUYING FEED (nyoj 248)

#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; #define N 352 /* 重量*单价+重量*距离 = 重量*(距离+单价) 预处理单价 贪心:优先买价格低的 */ struct Node { int p;// p = (单价+距离) int w; }c[N]; bool cmp(Node a, Node b)

河南省第四届acm省赛 表达式求值(栈的应用)

表达式求值 时间限制:3000 ms  |  内存限制:65535 KB 难度:3 描述 Dr.Kong设计的机器人卡多掌握了加减法运算以后,最近又学会了一些简单的函数求值,比如,它知道函数min(20,23)的值是20 ,add(10,98) 的值是108等等.经过训练,Dr.Kong设计的机器人卡多甚至会计算一种嵌套的更复杂的表达式. 假设表达式可以简单定义为: 1. 一个正的十进制数 x 是一个表达式. 2. 如果 x 和 y 是 表达式,则 函数min(x,y )也是表达式,其值为x,y

第九届省赛-表达式求值(模拟)

表达式求值 时间限制:1000 ms  |  内存限制:65535 KB 难度:3 描述 假设表达式定义为: 1. 一个十进制的正整数 X 是一个表达式. 2. 如果 X 和 Y 是 表达式,则 X+Y, X*Y 也是表达式; *优先级高于+. 3. 如果 X 和 Y 是 表达式,则 函数 Smax(X,Y)也是表达式,其值为:先分别求出 X ,Y 值的各位数字之和,再从中选最大数. 4.如果 X 是 表达式,则 (X)也是表达式. 例如: 表达式 12*(2+3)+Smax(333,220+2

NYOJ表达式求值

表达式求值 时间限制:3000 ms  |  内存限制:65535 KB 难度:4 描述 ACM队的mdd想做一个计算器,但是,他要做的不仅仅是一计算一个A+B的计算器,他想实现随便输入一个表达式都能求出它的值的计算器,现在请你帮助他来实现这个计算器吧. 比如输入:"1+2/4=",程序就输出1.50(结果保留两位小数) 输入 第一行输入一个整数n,共有n组测试数据(n<10). 每组测试数据只有一行,是一个长度不超过1000的字符串,表示这个运算式,每个运算式都是以"

NYOJ35 表达式求值 【栈】

表达式求值 时间限制:3000 ms  |  内存限制:65535 KB 难度:4 描述 ACM队的mdd想做一个计算器,但是,他要做的不仅仅是一计算一个A+B的计算器,他想实现随便输入一个表达式都能求出它的值的计算器,现在请你帮助他来实现这个计算器吧. 比如输入:"1+2/4=",程序就输出1.50(结果保留两位小数) 输入 第一行输入一个整数n,共有n组测试数据(n<10). 每组测试数据只有一行,是一个长度不超过1000的字符串,表示这个运算式,每个运算式都是以"