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

poj3253

时间:2017-07-08 11:15:44      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:mod   tracking   while   return   printf   amp   content   gre   article   

#include<iostream>
#include<queue>
using namespace std;
#define read(x) scanf("%lld",&x)
int main()
{
	priority_queue<long long,vector<long long>,greater<long long> >q;
	long long n,temp,sum;
	read(n);
	if(n==1)
	{
		read(temp);
		printf("%lld\n",temp);
		return 0;
	}
	while(n--)
	{
		read(temp);
		q.push(temp);
	}
	sum=0;
	while(q.size()>1)
	{
		temp=q.top();
		q.pop();
		temp+=q.top();
		q.pop();
		sum+=temp;
		q.push(temp);
	}
	printf("%lld\n",sum);
}
小顶堆实现哈夫曼树

poj3253

标签:mod   tracking   while   return   printf   amp   content   gre   article   

原文地址:http://www.cnblogs.com/wzzkaifa/p/7135878.html

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