BZOJ 3253 Fence Repair 哈夫曼树 水题

http://poj.org/problem?id=3253

这道题约等于合并果子,但是通过这道题能够看出来哈夫曼树是什么了。

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 #include<cmath>
 5 #include<iostream>
 6 #include<queue>
 7 using namespace std;
 8 #define LL long long
 9 const int maxn=300010;
10 int n;
11 priority_queue< LL,vector<LL>,greater< LL > >q;
12 int main(){
13     while(~scanf("%d",&n)){
14         LL x,y;
15         for(int i=1;i<=n;i++){scanf("%lld",&x);q.push(x);}
16         LL ans=0;
17         while(!q.empty()){
18             x=q.top();q.pop();
19             if(q.empty())continue;
20             y=q.top();q.pop();
21             ans+=x+y;
22             q.push(x+y);
23         }
24         printf("%lld\n",ans);
25         while(!q.empty())q.pop();
26     }
27     return 0;
28 }
View Code

 

转载于:https://www.cnblogs.com/137shoebills/p/9123718.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值