• 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 }
  • 相关阅读:
    Asp.Net MVC 实现将Easy-UI展示数据下载为Excel 文件
    Asp.Net MVC 文件管理Demo(文件展示,上传,下载,压缩,文件重命名等)
    摄影测量-后方交会与前方交会,相对定向与绝对定向,光束法
    读取超大Excel(39万行数据)
    js 数组 remove
    VM不能连入局域网
    EPANET中读取INPUT文件的函数文件——INPUT3.C
    EPANET中读取INPUT文件的函数文件——INPUT1.C/INPUT2.C/INPUT3.C
    EPANET源码中用到的几个简单C语言函数介绍三
    EPANET中的哈希文件——hash.c
  • 原文地址:https://www.cnblogs.com/xz816111/p/4467264.html
Copyright © 2020-2023  润新知