码迷,mamicode.com
首页 > 其他好文 > 详细

markdown

时间:2019-12-22 20:26:27      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:clear   add   cst   操作   turn   efi   错误   string   cpp   

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<stack>
#define G if(top==0) { flag=1; break; }//取模和除以的时候第一个数等于0 
using namespace std;
stack<long long>s;
long long x,top,b,flag,m=0,p,n,y[23333];
string w[23333],a;
bool E2() { if(s.size()<2) return false; return true; }//栈内元素是否少于一个 
bool E1() { if(s.size()<1) return false; return true; }//栈内元素是否少于两个 
void Do() { s.pop(); b=s.top(); s.pop(); }
void Clear() { if(s.size()) s.pop(); }
void f(long long x)
{
    Clear(); s.push(x); flag=0;//flag=1相当于错误 
    for(int i=1;i<=m;i++)//进行每一个操作 
    {
        a=w[i];
        if(s.size()) top=s.top();
        //压行大法好 
        if(a=="END") break;
        if(a=="NUM") s.push(y[i]);
        if(a=="POP"&&E1()) s.pop(); 
        if(a=="INV"&&E1()) { s.pop(); s.push(-top); }
        if(a=="DUP"&&E1()) s.push(top);
        if(a=="SWP"&&E2()) { Do(); s.push(top); s.push(b); }
        if(a=="ADD"&&E2()) { Do(); s.push(top+b); E2(); }
        if(a=="SUB"&&E2()) { Do(); s.push(b-top); E2(); }
        if(a=="MUL"&&E2()) { Do(); s.push(b*top); E2(); }
        if(a=="DIV"&&E2()) { Do(); G; s.push(b/top); E2(); }
        if(a=="MOD"&&E2()) { Do(); G; s.push(b%top); E2(); }
        if(s.size()&&abs(s.top())>1000000000) { flag=1; break; }
    }
    if(s.size()!=1||flag) printf("ERROR\n");//错误 
    else printf("%lld\n",s.top());
}
int main()
{
    while(cin>>w[++m])//读入 
    {
        if(w[m]=="END") break;
        if(w[m]=="NUM") { scanf("%lld",&y[m]); }
    }
    scanf("%lld",&n);
    for(int i=1;i<=n;i++) { scanf("%lld",&p); f(p); }
    return 0;
}

markdown

标签:clear   add   cst   操作   turn   efi   错误   string   cpp   

原文地址:https://www.cnblogs.com/Andy-park/p/12080621.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!