hdu 1082(栈的应用)

点击打开链接


栈模拟

#include"stdio.h"
#include"string.h"
#include"stack"
using namespace std;

struct node
{
	int x,y;
}A[201];

int main()
{
	int n;
	int i;
	int f;
	char c;
	int ans;
	char s[1001];
	node t,tt;
	scanf("%d",&n);
	while(n--)
	{
		getchar();
		scanf("%c",&c);
		scanf("%d%d",&A[c].x,&A[c].y);
	}
	getchar();
	
	while(gets(s))
	{
		f=1;
		ans=0;
		stack<char>s1;
		stack<node>s2;
		for(i=0;s[i];i++)
		{
			if(s[i]=='(')
				s1.push(s[i]);
			else if(s[i]==')')
			{
				c=s1.top();
				s1.pop();
				s1.pop();
				while(!s1.empty()&&s1.top()!='(')
				{
					tt=s2.top();
					s2.pop();
					t=s2.top();
					if(t.y!=tt.x)
					{
						f=0;
						break;
					}
					ans+=t.x*t.y*tt.y;
					t.y=tt.y;
					s2.pop();
					s2.push(t);
					s1.pop();
				}
				s1.push(s[i]);
			}
			else
			{
				if(!s1.empty()&&s1.top()!='(')
				{
					t=s2.top();
					if(t.y!=A[s[i]].x)
					{
						f=0;
						break;
					}
					ans+=t.x*t.y*A[s[i]].y;
					t.y=A[s[i]].y;
					s2.pop();
					s2.push(t);
				}
				else
				{
					s2.push(A[s[i]]);
					s1.push('#');
				}
			}
		}
		if(f)printf("%d\n",ans);
		else printf("error\n");
	}
	return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值