zoukankan      html  css  js  c++  java
  • POJ 3253 Fence Repair (贪心)

    Fence Repair
    Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u
    Appoint description: 

    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



    反过来考虑,将一堆木板组合成一个,每次选最小的两个,用个优先队列来维护。
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <string>
     5 #include <algorithm>
     6 #include <cctype>
     7 #include <cmath>
     8 #include <queue>
     9 #include <map>
    10 #include <cstdlib>
    11 #include <vector>
    12 using    namespace    std;
    13 
    14 int    n;
    15 int    box;
    16 long    long    a,b;
    17 long    long    sum;
    18 priority_queue<long long,vector<long long>,greater<long long> >    que;
    19 
    20 int    main(void)
    21 {
    22     while(scanf("%d",&n) != EOF)
    23     {
    24         for(int i = 0;i < n;i ++)
    25         {
    26             scanf("%d",&box);
    27             que.push(box);
    28         }
    29 
    30         sum = 0;
    31         while(que.size() != 1)
    32         {
    33             a = que.top();
    34             que.pop();
    35             sum += a;
    36             b = que.top();
    37             que.pop();
    38             sum += b;
    39             que.push(a + b);
    40         }
    41         que.pop();
    42         printf("%lld
    ",sum);
    43     }
    44 
    45     return    0;
    46 }
  • 相关阅读:
    在为知笔记中使用JQuery
    解决Wireshark安装Npcap组件失败
    SSL/TLS抓包出现提示Ignored Unknown Record
    Metasploit中aggregator插件无法使用
    Metasploit运行环境内存不要低于2GB
    如何查看抓包文件所使用的捕获过滤器
    Nvidia的CUDA库现在恢复使用了
    Metasploit远程调用Nessus出错
    Nessus更新到8.3.0
    Kali Linux安装字典StarDict
  • 原文地址:https://www.cnblogs.com/xz816111/p/4467264.html
Copyright © 2011-2022 走看看