九度 oj 1172

来源:互联网 发布:淘宝质量好的女装品牌 编辑:程序博客网 时间:2024/06/15 14:16
题目描述:

哈夫曼树,第一行输入一个数n,表示叶结点的个数。需要用这些叶结点生成哈夫曼树,根据哈夫曼树的概念,这些结点有权值,即weight,题目需要输出所有结点的值与权值的乘积之和。

输入:

输入有多组数据。
每组第一行输入一个数n,接着输入n个叶节点(叶节点权值不超过100,2<=n<=1000)。

输出:

输出权值。

样例输入:
5  1 2 2 5 9
样例输出:
37
来源:

2010年北京邮电大学计算机研究生机试真题

#include<stdio.h>#include<queue>using namespace std;priority_queue<int,vector<int>,greater<int> > Q;int main(){    int n;    while(scanf("%d",&n)!=EOF)    {                              while(Q.empty()==0)                              Q.pop();                              for(int i=1;i<=n;i++)                              {                                      int x;                                      scanf("%d",&x);                                      Q.push(x);                                      }                                      int ans=0;                                      while(Q.size()>1)                                      {                                                       int a=Q.top();                                                       Q.pop();                                                       int b=Q.top();                                                       Q.pop();                                                       ans+=a+b;                                                       Q.push(a+b);                                                       }                                                       printf("%d\n",ans);                                                       }                                                       } 


0 0
原创粉丝点击