luoguP1090 合并果子 (贪心+优先队列)
Posted frankchen831x
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了luoguP1090 合并果子 (贪心+优先队列)相关的知识,希望对你有一定的参考价值。
题目链接:https://www.luogu.org/problemnew/show/P1090
思路:
典型的贪心题,显然每次选择两个最小的堆合并最后耗费的体力最少,但每次合并之后都需要寻找最小的两个堆。假如每次合并之后都排一次序,一定会超时的。
可以有很多实现方法,一种是使用优先队列,每次出队两个最小的,合并后入队。
代码如下:
1 #include<cstdio> 2 #include<queue> 3 #include<algorithm> 4 using namespace std; 5 6 int n; 7 priority_queue<int,vector<int>,greater<int> > pq; 8 int res=0; 9 10 int main(){ 11 scanf("%d",&n); 12 int x,tmp1,tmp2; 13 for(int i=0;i<n;i++){ 14 scanf("%d",&x); 15 pq.push(x); 16 } 17 for(int i=1;i<n;i++){ 18 tmp1=pq.top(); 19 pq.pop(); 20 tmp2=pq.top(); 21 pq.pop(); 22 res+=(tmp1+tmp2); 23 pq.push(tmp1+tmp2); 24 } 25 printf("%d ",res); 26 return 0; 27 }
以上是关于luoguP1090 合并果子 (贪心+优先队列)的主要内容,如果未能解决你的问题,请参考以下文章