uva 442 矩阵链接(表达式栈)题解

栈对于表达式求值的应用,遇到字母进栈,遇到右括号出栈两次运算后再进栈

思路见码

#include<cstdio>  
#include<cstring>  
#include<cmath>  
#include<cstdlib>  
#include<iostream>  
#include<algorithm>  
#include<vector>  
#include<map>  
#include<queue>  
#include<stack> 
#include<string>
#include<map> 
using namespace std;  
#define LL long long  
//const int maxn=;

struct matrix{
	int le,ri;
}mat[30];
stack<matrix> s;
string str;

int main(){
	//freopen("input.txt","r",stdin);
	int n;
	scanf("%d",&n);
	getchar();
	for(int i=0;i<n;i++){
		char id;
		int le,ri;
		scanf("%c%d%d",&id,&le,&ri);
		mat[id-'A'].le=le;
		mat[id-'A'].ri=ri;
		getchar();
	}
	while(cin>>str){
		int ok=1,ans=0;
		int len=str.length();
		for(int i=0;i<len;i++){
			if(isalpha(str[i])) s.push(mat[str[i]-'A']);
			else if(str[i]==')'){
				matrix tmp1=s.top();s.pop();
				matrix tmp2=s.top();s.pop();
				if(tmp1.le==tmp2.ri){
					matrix tmp3;
					tmp3.le=tmp2.le;tmp3.ri=tmp1.ri;
					s.push(tmp3);
					ans+=tmp1.ri*tmp1.le*tmp2.le;
				} 
				else{
					ok=0;
					break;
				}
			}  
		}
		if(ok) printf("%d\n",ans);
		else printf("error\n");
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值