时间限制:1秒 内存限制:32M
题目描述
哈夫曼树,第一行输入一个数n,表示叶结点的个数。需要用这些叶结点生成哈夫曼树,根据哈夫曼树的概念,这些结点有权值,即weight,题目需要输出所有结点的值与权值的乘积之和。
输入描述
输入有多组数据。
每组第一行输入一个数n,接着输入n个叶节点(叶节点权值不超过100,2<=n<=1000)。
输出描述
输出权值。
样例
输入
2 2 8 3 5 11 30
输出
10 62
#include<cmath>
#include<cstdio>
#include<queue>
#include<string>
#include<iomanip>
#include<iostream>
#include<algorithm>
using namespace std;
int main(){
int n;
priority_queue<long long>q;
long long x,sum=0,a,b;
while(cin>>n){
for(int i=1;i<=n;i++){
cin>>x;
q.push(-x) ;
}
while(q.size() >1){
a=-q.top() ;
q.pop() ;
b=-q.top() ;
q.pop() ;
sum+=a+b;
q.push(-a-b);
}
cout<<sum<<endl;
q.pop() ;
sum=0;
}
return 0;
}