P1090 [NOIP2004 提高组] 合并果子 / [USACO06NOV] Fence Repair G 题解


P1090 [NOIP2004 提高组] 合并果子 / [USACO06NOV] Fence Repair G
这是一道贪心算法的题目,每次选择两个最小的堆,合并后,继续直到只有一堆为止,可能用优先队列进行维护。

#include
using namespace std;
int main()
{
        priority_queue,greater > q;
        int n;
        cin>>n;
        for (int i=1;i<=n;i++)
       {
               int x;
               cin>>x;
               q.push(x);
       }
       int ans=0;
       while(q.size()>1)
      {
            int x,y;
           x=q.top();
           q.pop();
           y=q.top();
           q.pop();
           int z;
           z=x+y;
           ans+=z;
           q.push(z);
       }
       cout<      return 0;
}