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\n",res); 26 return 0; 27 }
朋友们,无论这个世界变得怎样,只要能够为了当时纯粹的梦想和感动坚持努力下去,不管其它人怎么样,我们也能够保持自己的本色走下去。