• USACO Training 1.4 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
    1. /*
    2. ID: choiyin1
    3. TASK: barn1
    4. LANG: C++
    5. */
    6. #include
    7. using namespace std;
    8. const int maxn = 200 + 5;
    9. bool vis[maxn];
    10. int open[maxn];
    11. bool cmp(int x, int y)
    12. {
    13. return x > y;
    14. }
    15. int num[maxn];
    16. int main(){
    17. freopen("barn1.in", "r", stdin);
    18. freopen("barn1.out", "w", stdout);
    19. int m, s, c;
    20. while(scanf("%d%d%d", &m, &s, &c) == 3)
    21. {
    22. int Min = maxn, Max = 0;
    23. memset(vis, 0, sizeof(vis));
    24. for(int i = 0; i < c; i++)
    25. {
    26. int t;
    27. scanf("%d", &t);
    28. vis[t] = 1;
    29. Min = min(Min, t);
    30. Max = max(Max, t);
    31. }
    32. int cnt = 0;
    33. for(int i = Min; i <= Max; i++)
    34. {
    35. if(!vis[i])
    36. open[cnt]++;
    37. else if(open[cnt]) cnt++;
    38. }
    39. int ans = 0;
    40. sort(open, open + cnt, cmp);
    41. for(int i = 0; i < m - 1; i++)
    42. {
    43. ans = ans + open[i];
    44. }
    45. printf("%d\n", Max - Min - ans + 1);
    46. }
    47. }

  • 相关阅读:
    软件测试之报表测试
    Android 13.0 SystemUI下拉状态栏增加响铃功能
    419-Linux基础(常用命令详解1)
    SOP8封装 NV400F的语音芯片在电动车充电桩的应用
    动手做一个 vue 右键菜单
    网络连接评分机制之NetworkFactory
    JavaWeb项目(登录注册页面)全过程详细总结
    ChatGPT/GPT4科研技术应用与AI绘图及论文高效写作
    Go语言进阶,交叉编译,数字与字符的转换,多变参数
    nacos使用达梦数据库
  • 原文地址:https://blog.csdn.net/GeekAlice/article/details/126964014