hdoj1082 Matrix Chain Multiplication(栈的运用)

来源:http://acm.hdu.edu.cn/showproblem.php?pid=1082

感觉自己做复杂了,还用了map。

代码如下:

#include<stdio.h>
#include<string>
#include<iostream>
#include<map> 
#include<stack>
using namespace std;
struct matr
{
	int m,n;
};
map<char,matr> alp;
int main()
{
	matr temp,t1,t2,temp1;
	char c;
	int i,j,num,sum,k,flag;
	char str[250];
	stack<char>s1;
	stack<char>s2;
	scanf("%d",&num);
	getchar();
	for(i=0;i<num;i++)
	{
	   scanf("%c%d%d",&c,&temp.m,&temp.n);
	   alp.insert(make_pair(c,temp));
	   getchar();	
	}	
	while(~scanf("%s",str))
	{
		int len;
		sum=0;k=0;flag=0;
		len=strlen(str);
		if(len==1){printf("0\n");continue;}
		while(!s1.empty())s1.pop();
		while(!s2.empty())s2.pop();
		for(i=0;i<len;i++)
		{
			if(str[i]=='(')s1.push(str[i]);
			if(str[i]>='A'&&str[i]<='Z')s2.push(str[i]);//与!!! 
			if(str[i]==')')
			{
				s1.pop();
				c=s2.top();s2.pop();
				t2=alp[c];
				c=s2.top();s2.pop();
				t1=alp[c];
				if(t1.n!=t2.m)
				{
				    flag=1;
					printf("error\n");break;
				}
				else
				{
					sum+=t1.m*t1.n*t2.n;
					temp1.m=t1.m;
					temp1.n=t2.n;
					alp.insert(make_pair((char)k,temp1));
					s2.push((char)k);k++;
				}
			}
		}
		for(i=0;i<k;i++) alp.erase((char)i);
		if(flag==1)continue;
		else printf("%d\n",sum);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值