码迷,mamicode.com
首页 > 其他好文 > 详细

合并果子

时间:2019-07-31 23:37:22      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:思路   哈夫曼树   www   algorithm   cst   priority   top   cto   mes   

合并果子

题意:将n堆果子合并为一堆,每次合并两堆,合并消耗的体力为两堆果子的质量和,求消耗的体力最小。

思路:典型的哈夫曼树,两两最小,再放入优先队列,再重复直到只剩下一堆。

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
#include<vector>
using namespace std;
int n,ans,k;
priority_queue<int,vector<int>,greater<int> > q;
int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        scanf("%d",&k);
        q.push(k);
    }
    for(int i=1;i<n;i++){
        int a=q.top();
        q.pop();
        int b=q.top();
        q.pop();
        ans+=a+b;
        q.push(a+b);
    }
    printf("%d",ans);
    return 0;
}

 

合并果子

标签:思路   哈夫曼树   www   algorithm   cst   priority   top   cto   mes   

原文地址:https://www.cnblogs.com/2462478392Lee/p/11279552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!