zoukankan      html  css  js  c++  java
  • POJ-3253

    Fence Repair
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 51334   Accepted: 16851

    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

    3
    8
    5
    8

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

    题意:

    将么木头切成n块,每切一次的花费等于两分块的和,求最小花费。

    使用优先队列从小到大排序,每次取最小的两个,最后的和即为最小。

    AC代码:

     1 //#include<bits/stdc++.h>
     2 #include<iostream>
     3 #include<algorithm>
     4 #include<queue>
     5 using namespace std;
     6 
     7 int l[20010];
     8 
     9 int main(){
    10     ios::sync_with_stdio(false);
    11     int n;
    12     while(cin>>n&&n){
    13         long long ans=0;
    14         priority_queue<int,vector<int>,greater<int> > q; 
    15         for(int i=0;i<n;i++){
    16             cin>>l[i];
    17         }
    18         for(int i=0;i<n;i++){
    19             q.push(l[i]);
    20         }
    21         while(q.size()>1){
    22             int t=0;
    23             t+=q.top();
    24             q.pop();
    25             t+=q.top();
    26             q.pop();
    27             ans+=t;
    28             q.push(t);    
    29         }
    30         cout<<ans<<endl;
    31     }
    32     return 0;
    33 }
  • 相关阅读:
    对于函数中多个返回值的处理
    Docker-compose 安裝单机版redis
    设计模式七大设计原则
    UML 设计技巧
    使用Docker 容器配置nexus3.29 私有仓库
    分布式消息Kafka通信原理分析
    分布式消息Kafka通信
    使用docker 搭建nexus3.29
    分布式消息Kafka初步认识及基本应用
    Dubbo 常用配置及源码分析
  • 原文地址:https://www.cnblogs.com/Kiven5197/p/7268665.html
Copyright © 2011-2022 走看看