UVA - 442 C - Matrix Chain Multiplication

题目 : 计算一个矩阵乘法的次数

讲道理,应该用struct的,但是最近几天写stl写傻了。。。直接上了pair,也不知道是为什么。。。

#include <algorithm>
#include <cstring>
#include <iostream>
#include <cstdio>
#include <queue>
#include <stack>
#include <map>
using namespace std;
#define Pair pair<int,int>
int n;
map<int ,pair<int,int> > mat;

int getdata()
{
    char s[1005];
    stack<pair<Pair,int> > S;
    while(cin.getline(s,1005))
    {
        int slen = strlen(s);
        int flag = 1;
        for(int i = 0; i < slen; i++)
        {
            if(s[i] == ')')
            {
                pair<Pair,int> b = S.top(); S.pop();
                pair<Pair,int> a = S.top(); S.pop();
                if(a.first.second != b.first.first)
                {
                    flag = 0;
                    printf("error\n"); break;
                }
                else
                {
                    int jieguo = (a.first.first)*(a.first.second)*(b.first.second);
                    S.push(pair<Pair,int>(Pair(a.first.first,b.first.second),jieguo+a.second+b.second));
                }
            }
            if(isupper(s[i]))
            {
                int a = s[i] - 'a';
                S.push(pair<Pair,int>(Pair(mat[a].first,mat[a].second),0));
            }
        }
        if(flag)
            printf("%d\n",S.top().second);
    }
}
int main()
{
    scanf("%d",&n);
    for(int i = 0; i < n ; i++)
    {
        char s[2];
        int a,b;
        scanf("%s%d%d",s,&a,&b);
        mat[s[0] -'a'] = Pair(a,b);
    }
    getchar();
    getdata();
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值