POJ 3253 Fence Repair 优先队列,思维

原题:http://poj.org/problem?id=3253
题意:给n个木条,让你用一块木板切出来,代价是两块木板的长度和。求最小代价
题解:我们发现很有意思的性质,将n个数加起来,和切出来本质上是一样的。不妨来贪心,挑选两个最小的加起来,然后将它加回原序列。可以用堆维护。

#include<cstdio>
#include<queue> 

using namespace std;
typedef long long ll;
priority_queue<ll,vector<ll>,greater<ll> > q;
int n;
int main(){
	scanf("%d",&n);
	for(int i=1,x;i<=n;i++){
		scanf("%lld",&x);
		q.push(x);
	}
	ll ans=0;
	while(q.size()>1){
	//	printf("%d",q.top());
		ll t1=q.top();q.pop();
		ll t2=q.top();q.pop();
		//q.pop();
		ans+=t1+t2;
		q.push(t1+t2); 
	} 
	printf("%lld\n",ans);
	return 0;
} 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值