uva 442 矩阵链乘

// 题意:输入n个矩阵的维度和一些矩阵链乘表达式,输出乘法的次数。假定A和m*n的,B是n*p的,那么AB是m*p的,乘法次数为m*n*p  

// 算法:用一个栈。遇到字母时入栈,右括号时出栈并计算,然后结果入栈。因为输入保证合法,括号无序入栈

//  Created by Chenhongwei in 2015.
//  Copyright (c) 2015 Chenhongwei. All rights reserved.

#include"iostream"
#include"cstdio"
#include"cstdlib"
#include"cstring"
#include"climits"
#include"queue"
#include"cmath"
#include"map"
#include"set"
#include"vector"
#include"stack"
#include"sstream"
#include"algorithm"
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
P m[30];
int main()
{	
	//ios::sync_with_stdio(false);
	// freopen("in.txt","r",stdin);
	//freopen("out.txt","w",stdout);
	int n;
	scanf("%d\n",&n);
	for(int i=1;i<=n;i++)
	{
		char ch;
		int a,b;
		scanf("%c %d %d\n",&ch,&a,&b);
		m[ch-'A'+1].first=a;
		m[ch-'A'+1].second=b;
	}
	string s;
	while(getline(cin,s))
	{
		stack<P> stk;
		ll ans=0;
		int flag=1;
		for(int i=0;i<s.size();i++)
		{
			if(s[i]=='(')continue;
			else if(isalpha(s[i]))
				stk.push(m[s[i]-'A'+1]);
			else if(s[i]==')')
			{
				P x,y,temp;
				x=stk.top();stk.pop();
				y=stk.top();stk.pop();
				if(x.first!=y.second)
				{
					flag=0;
					printf("error\n");
					break;
				}
				else
				{
					ans+=y.first*y.second*x.second;
					temp.first=y.first;
					temp.second=x.second;
					stk.push(temp);
				}
			}
		}
		if(flag==1)
			cout<<ans<<endl;
		


	}
	
	return 0;
}



### UVa818 切断圆环链问题解决方案 对于UVa818切断圆环链的问题,目标是在最少切割次数的情况下将给定长度的闭合链条分割成指定数量的小段。该问题可以通过贪心算法来有效求解。 #### 贪婪策略分析 为了最小化切割次数,在每次操作时应尽可能多地利用已有的切口位置。具体来说,当需要制作n个链接时,只需要做(n-1)次切割即可完成任务[^1]。 #### 实现方法概述 程序接收一系列整数作为输入数据,表示所需制造的不同尺寸片段数目;接着计算输出达到这些要求所需的最低切割次数。这里给出Python版本的具体实现: ```python def min_cuts_needed(links): """Calculate minimum cuts needed to produce given link counts.""" # Remove duplicates and sort descendingly unique_links = sorted(set(links), reverse=True) total_cuts, current_length = 0, 0 while unique_links: next_cut = unique_links.pop(0) if not unique_links or (unique_links[0]*2 >= next_cut): total_cuts += 1 current_length = next_cut elif sum(unique_links)*2 < next_cut: break else: temp_sum = 0 index_to_remove = None for i, val in enumerate(unique_links): temp_sum += val if temp_sum*2 >= next_cut: index_to_remove = i break del unique_links[:index_to_remove+1] total_cuts += 1 current_length = next_cut return max(total_cuts - 1, 0) if __name__ == "__main__": import sys input_data = list(map(int, sys.stdin.readline().strip().split())) result = min_cuts_needed(input_data[:-1]) print(result) ``` 此代码实现了上述贪婪策略,并通过标准输入读取测试案例中的链接需求列表。注意最后会减去一次因为初始状态下的虚拟“零”切片[^1]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值