• BARN REPAIR


    Barn Repair

    It was a dark and stormy night that ripped the roof and gates off the stalls that hold Farmer John's cows. Happily, many of the cows were on vacation, so the barn was not completely full.

    The cows spend the night in stalls that are arranged adjacent to each other in a long line. Some stalls have cows in them; some do not. All stalls are the same width.

    Farmer John must quickly erect new boards in front of the stalls, since the doors were lost. His new lumber supplier will supply him boards of any length he wishes, but the supplier can only deliver a small number of total boards. Farmer John wishes to minimize the total length of the boards he must purchase.

    Given M (1 <= M <= 50), the maximum number of boards that can be purchased; S (1 <= S <= 200), the total number of stalls; C (1 <= C <= S) the number of cows in the stalls, and the C occupied stall numbers (1 <= stall_number <= S), calculate the minimum number of stalls that must be blocked in order to block all the stalls that have cows in them.

    Print your answer as the total number of stalls blocked.

    PROGRAM NAME: barn1

    INPUT FORMAT

    Line 1: M, S, and C (space separated) Lines 2-C+1: Each line contains one integer, the number of an occupied stall.

    SAMPLE INPUT (file barn1.in)

    4 50 18
    3
    4
    6
    8
    14
    15
    16
    17
    21
    25
    26
    27
    30
    31
    40
    41
    42
    43
    

    OUTPUT FORMAT

    A single line with one integer that represents the total number of stalls blocked.

    SAMPLE OUTPUT (file barn1.out)

    25
    

    [One minimum arrangement is one board covering stalls 3-8, one covering 14-21, one covering 25-31, and one covering 40-43.]

    这道题是个动态规划。。。对于贪心做出来的人表示严重鄙视。。。f[i][j] i表示前i个牛。。j表示用多少块木板,即f[i][j]=min(f[i-1][j-1]+1,f[i-1][j]+a[i]-a[i-1]),但要注意处理j=1的情况和i等于1的情况,这样就可以A掉了

    View Code
     1 #include<iostream>
     2 #include<string.h>
     3 #include<algorithm>
     4 #include<cstdio>
     5 #include<cstdlib>
     6 #include<cstring>
     7 
     8 using namespace std;
     9 
    10 int m,s,n;
    11 int a[201];
    12 int f[201][51];
    13 
    14 int main()
    15 {
    16     freopen("barn1.in","r",stdin);
    17     freopen("barn1.out","w",stdout);
    18     cin>>m>>s>>n;
    19     for(int i=1;i<=n;i++)
    20     {
    21         cin>>a[i];
    22     }
    23     for(int i=1;i<=s;i++)
    24     {
    25        for(int j=1;j<=50;j++)
    26        {
    27           f[i][j]=123456789;
    28        }
    29     }
    30     sort(a+1,a+n+1);
    31     for(int i=1;i<=50;i++)
    32     {
    33        f[i][0]=0;
    34        f[0][i]=0;
    35     }
    36     for(int i=1;i<=n;i++)
    37     {
    38        for(int j=1;j<=m;j++)
    39        {
    40            if(j==1&&i==1)
    41            f[i][j]=f[i-1][j]+1;
    42            else if(j==1)
    43            f[i][j]=f[i-1][j]+a[i]-a[i-1];
    44            else
    45            f[i][j]=min(f[i-1][j-1]+1,f[i-1][j]+a[i]-a[i-1]);
    46        }
    47     }
    48     cout<<f[n][m]<<endl;
    49     return 0;
    50 }
    51     
  • 相关阅读:
    【转】团队管理
    Oracle 11g中关于数据定义的思考
    【转】InfoQ的Java安全认证机制
    Oracle 11g windows简体中文版安装指南
    【转】InfoQ的集成Java内容仓库和Spring
    Oracle数据库常用操作命令(一)
    常用DQL
    如何处理Oracle客户端查询乱码问题
    Documentum中的TCS与对应权限设置
    【转】Windows系统下的Apache性能优化mpm
  • 原文地址:https://www.cnblogs.com/spwkx/p/2592636.html
Copyright © 2020-2023  润新知