码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 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. }

  • 相关阅读:
    2024年G2电站锅炉司炉证考试题库及G2电站锅炉司炉试题解析
    【论文学习】GraphFM: Graph Factorization Machines for Feature Interaction Modeling
    虚拟现实红色展馆优势在哪
    【JavaWeb】Servlet系列 --- 使用纯Servlet做一个单表的CRUD操作(oa小项目,超详细笔记)
    java毕业设计电子病历系统mybatis+源码+调试部署+系统+数据库+lw
    TCP 和UDP通信流程
    springboot实现WebAPI版本控制
    mysql表引擎批量转换--mysql_convert_table_format
    漏电继电器HLJ-400FS
    Java编写简易rabbitmq生产者与消费者
  • 原文地址:https://blog.csdn.net/GeekAlice/article/details/126964014
  • 最新文章
  • 沪漂五周年了:我越来越迷茫了
    Agentic Skill Routing 实战:别再把所有 Skill 塞进 AI Agent 上下文
    MySQL-Seconds_behind_master的精度误差
    [MAF预定义ChatClient中间件-03]CachingChatClient——利用缓存省钱省时间
    AI的至暗历史:从万众期待到被政府撤资,AI的两次死亡徘徊
    Agent OS :五种驯服不确定性的范式
    PortSwigger SQL注入LAB11
    数据库即时编译JIT
    [Begin]AI Learn Data Day 0
    深度学习进阶(二十七)现代 LLM 的核心架构设计其二:SwiGLU
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号