博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj-3253 Fence Repair[霍夫曼树]
阅读量:6929 次
发布时间:2019-06-27

本文共 2509 字,大约阅读时间需要 8 分钟。

Time Limit: 2000MS

Description

Farmer John wants to repair a small length of the fence around the pasture. He measures the fence and finds that he needs N (1 ≤ N ≤ 20,000) planks of wood, each having some integer length Li (1 ≤ Li ≤ 50,000) units. He then purchases a single long board just long enough to saw into the N planks (i.e., whose length is the sum of the lengths Li). FJ is ignoring the "kerf", the extra length lost to sawdust when a sawcut is made; you should ignore it, too.

FJ sadly realizes that he doesn't own a saw with which to cut the wood, so he mosies over to Farmer Don's Farm with this long board and politely asks if he may borrow a saw.

Farmer Don, a closet capitalist, doesn't lend FJ a saw but instead offers to charge Farmer John for each of the N-1 cuts in the plank. The charge to cut a piece of wood is exactly equal to its length. Cutting a plank of length 21 costs 21 cents.

Farmer Don then lets Farmer John decide the order and locations to cut the plank. Help Farmer John determine the minimum amount of money he can spend to create the N planks. FJ knows that he can cut the board in various different orders which will result in different charges since the resulting intermediate planks are of different lengths.

Input

Line 1: One integer N, the number of planks

Lines 2..N+1: Each line contains a single integer describing the length of a needed plank

Output

Line 1: One integer: the minimum amount of money he must spend to make N-1 cuts

Sample Input

3858

Sample Output

34

Hint

He wants to cut a board of length 21 into pieces of lengths 8, 5, and 8.

The original board measures 8+5+8=21. The first cut will cost 21, and should be used to cut the board into pieces measuring 13 and 8. The second cut will cost 13, and should be used to cut the 13 into 8 and 5. This would cost 21+13=34. If the 21 was cut into 16 and 5 instead, the second cut would cost 16 for a total of 37 (which is more than 34).

霍夫曼编码问题,离散上学过的,每次选择最小的两个,让他们相加,然后在把他们放到队伍中重新选择最小的两个。用优先队列进行维护。

#include "stdio.h"#include "string.h"#include "queue"#include "algorithm"using namespace std;typedef long long LL;priority_queue
,greater
> que;int main() { int N; scanf("%d", &N) ; while (que.size()) que.pop(); for (int i = 0; i < N; i++) { int a; scanf("%d", &a); que.push(a); } LL ans = 0; while (que.size() != 1) { int ta = que.top(); que.pop(); int tb = que.top(); que.pop(); ta += tb; que.push(ta); ans += ta; } printf("%lld\n", ans); return 0;}

 

转载于:https://www.cnblogs.com/cniwoq/p/8412878.html

你可能感兴趣的文章
基础之简单命令_1
查看>>
离线部署ELK+kafka日志管理系统
查看>>
所有windows系统快速建立用户解读
查看>>
我的友情链接
查看>>
通过signall.SIGKILL在指定位置结束正在执行的进程
查看>>
Jmeter是什么?
查看>>
MHA环境搭建及配置使用
查看>>
nginx+lua+redis实现GET请求接口之黑名单(二)
查看>>
nwfilter规则
查看>>
EXCEl 算时间,扣除双休日,非工作时间
查看>>
UITableView使用过程中可能遇到的问题
查看>>
php获取服务器时间
查看>>
Libnfc-installation
查看>>
我的友情链接
查看>>
大学毕业前的目标
查看>>
从mysqldump备份数据库里面恢复一张表时遇到的问题
查看>>
打造64位Ubuntu个人工作平台
查看>>
LA3027(并查集)
查看>>
跟KingDZ学HTML5之五 探究Canvas之图像与文字
查看>>
json模块 & pickle模块
查看>>