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 }
  • 相关阅读:
    AWS CLI command example
    NetTime
    git fetch和git pull的区别
    Coding tools
    Username Generator
    使用消息系统来解决分布式事务
    【转】关于分布式事务、两阶段提交协议、三阶提交协议
    NoSql的三大基石:CAP理论&BASE&最终一致性
    【转】Raft 为什么是更易理解的分布式一致性算法
    【转】分布式一致性算法:Raft 算法(Raft 论文翻译)
  • 原文地址:https://www.cnblogs.com/xz816111/p/4467264.html
Copyright © 2011-2022 走看看