贪心//优先队列

Posted 给大佬递女装

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了贪心//优先队列相关的知识,希望对你有一定的参考价值。

n堆苹果,每次花费的体力是两堆苹果的总和,问花费的最少体力。
优先队列,很好处理。
#include <bits/stdc++.h>
using namespace std;

int main()
{
    priority_queue<int,vector<int>,greater<int> > que; 
    int n,t;
    int sum=0;
    cin>>n;
    for(int i=0; i<n; i++)
    {
        cin>>t;
        que.push(t);
    }
    for(int i=0;; i++)
    {
        int s1=0,s2=0;
        s1 = que.top();
        //cout<<s1<<" ";
        que.pop();
        if(que.empty())
        {
            que.push(s1);
            break;
        }
        s2 = que.top();
        que.pop();
        int s = s1+s2;
        sum+=s;
        if(que.empty())
        {
            que.push(s);
            break;
        }
        que.push(s);
        if(que.empty())
        {
            que.push(s1);
            break;
        }
    }
    cout<<sum<<endl;


    return 0;
}

 

以上是关于贪心//优先队列的主要内容,如果未能解决你的问题,请参考以下文章

[luoguP2672] 推销员(贪心 + 树状数组 + 优先队列)

区间贪心算法 结合优先队列使用效果更佳——以POJ 237613283190为例

hdu 5360 Hiking(优先队列+贪心)

poj3190区间类贪心+优先队列

poj 2431 优先队列,贪心

Stall Reservations(POJ 3190 贪心+优先队列)