zoukankan      html  css  js  c++  java
  • usaco 1.3.2 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.]
    自己写的这个实在是太挫了,哎,仅以此为戒。。。思考的不成熟就是这下场

    View Code
    /*
    ID: qyxiang1
    PROG: barn1
    LANG: C++
    */

    #include
    <fstream>
    #include
    <string>
    #include
    <iostream>
    #include
    <memory.h>
    #include
    <algorithm>
    #include
    <vector>
    #include
    <string.h>
    using namespace std;

    ifstream fin(
    "barn1.in");
    ofstream fout(
    "barn1.out");

    #ifdef _DEBUG
    #define out cout
    #define in cin
    #else
    #define out fout
    #define in fin
    #endif

    int main()
    {
    int iwood, ibarn, icow;
    int repair[201][2], woodnum;
    in >> iwood >> ibarn >> icow;
    if(iwood >= icow)
    {
    out << icow << endl;
    return 0;
    }
    int cow[201][2];
    memset(repair,
    0, sizeof(repair));
    memset(cow,
    0, sizeof(cow));

    int c;
    int i;
    int barn[201];
    for(i = 0; i < icow; ++i)
    {
    in >> barn[i];
    // repair[i][0] = repair[i][1] = c;
    }
    sort(barn,barn
    +icow);
    for(i = 0; i < icow; ++i)
    {

    repair[i][
    0] = repair[i][1] = barn[i];
    }
    int count = icow;
    int start, end;
    for(i = 1; count+1 >iwood; ++i)
    {
    //cout << "in loop " << count<< endl;
    //cout << "i =" << i << endl;
    count = -1;
    start
    = repair[0][0];
    end
    = repair[0][1];

    for(int j = 1; j < icow; ++j)
    {
    if(repair[j][0]- end == i)
    {
    end
    = repair[j][1];
    }
    else
    {
    ++count;
    cow[count][
    0] = start;
    cow[count][
    1] = end;
    // cout << cow[count][0] << ' ' << cow[count][1] << endl;
    start = repair[j][0];
    end
    = repair[j][1];
    }

    }
    ++count;
    // cout << "#" << start << ' ' << end << "#"<<count << endl;
    cow[count][0] = start;
    cow[count][
    1] = end;
    // cout << cow[count][0] << ' ' << cow[count][1] << endl;

    memcpy(repair, cow,
    sizeof(cow));

    //system("pause");
    icow = count + 1;
    }
    int step = i -2;
    // cout << "out loop:" << endl;
    // for(i = 0; i <= count; ++i)
    //cout << cow[i][0] << ' ' << cow[i][1] << endl;

    int total = 0;
    for(int i = 0; i <= count; ++i)
    total
    += (cow[i][1] - cow[i][0] + 1);

    out << total - step*(iwood-count-1) << endl;
    return 0;
    }
  • 相关阅读:
    Linear Predictors
    Non-Programmer's Tutorial for Python 3/File IO
    Python File I/O
    Introduction to Machine Learning
    Python3.6爬虫+Djiago2.0+Mysql --数据爬取
    MySql5.7 找回密码
    pyinstaller 打包python3.6文件成exe 运行
    python 连接mssql数据库
    Nopi 导出设置行高
    python登录aspx网站
  • 原文地址:https://www.cnblogs.com/cosmoseeker/p/2146162.html
Copyright © 2011-2022 走看看