博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 3253:Fence Repair
阅读量:5840 次
发布时间:2019-06-18

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

Fence Repair
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 33114   Accepted: 10693

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).

FJ想要把一段木头锯成他理想中的N段,每一段长度已知。但是锯每一段木头的开销就是木头的长度,我锯长度为21的木头,开销就是21,问想要锯成这样的N段,最小开销是多少?

优先队列,每次都取最小的两个值合并,然后再把改值放入队列中。不断循环,得到结果。

代码:

#include 
#include
#include
#include
#include
#include
#include
#pragma warning(disable:4996)using namespace std;int N;class cmp{public: bool operator()(int x, int y) { return x > y; }};int main(){ //freopen("i.txt","r",stdin); //freopen("o.txt","w",stdout); int i, temp1, temp2; long long ans = 0; priority_queue
, cmp>qu; cin >> N; for (i = 1; i <= N; i++) { cin >> temp1; qu.push(temp1); } while (qu.size() != 1) { temp1 = qu.top(); qu.pop(); temp2 = qu.top(); qu.pop(); ans = ans + temp1 + temp2; qu.push(temp1 + temp2); } cout << ans << endl; return 0;}

版权声明:本文为博主原创文章,未经博主允许不得转载。

转载于:https://www.cnblogs.com/lightspeedsmallson/p/4899550.html

你可能感兴趣的文章
Spring中注入基本类型
查看>>
aws devops
查看>>
Android 中文API (33) —— Checkable
查看>>
脚本方式安装 IIS7
查看>>
Oracle password expire notices
查看>>
C++异常处理 - try,catch,throw,finally的用法
查看>>
稳扎稳打Silverlight(12) - 2.0外观之样式, 模板, 视觉状态和视觉状态管理器
查看>>
Linux技巧汇总
查看>>
Linux下多播编程<一>【十全十美】
查看>>
怎样给RCP程序添加依赖的JAR包
查看>>
嵌入式应用MPU前景看好
查看>>
动态路由协议
查看>>
Windows Server 2008 R2 之二十八AD RMS故障排除
查看>>
发现“郝茵晴”:屌丝们的社会性传播实验
查看>>
反转单链表的几种方法
查看>>
RHCE 学习笔记(24) - LVM 逻辑卷
查看>>
WordPress优化:为网站添加个性化缩略图标
查看>>
shell脚本分析IP归属地
查看>>
网络安全系列之十 万能密码登录网站后台
查看>>
CITRIX XenAPP/TS打印管理ThinPrint.
查看>>