题目链接:Coffee Break  Gym-101911A

题目大意:有一位员工想要利用喝咖啡来休息,他给了一个数组表示他想要喝咖啡的时间点(假设他喝咖啡用时1分钟),老板规定每次喝咖啡的时间间隔必须要大于d。问:他将给定数组的时间点都经

      历一遍最少(贪心所在)需要多长时间,并输出每个时间点是在第几天经历的;

解题思路:贪心地选取喝咖啡的时间,我们尽量选取喝咖啡时间靠前的,然后贪心寻找能放在他后面最靠前的时间点,如果放不开就新开一天。

用map和队列的做法:

  1. /* */
  2. # include <iostream>
  3. # include <stdio.h>
  4. # include <string.h>
  5. # include <string>
  6. # include <iomanip>
  7. # include <algorithm>
  8. # include <ctime>
  9. # include <cmath>
  10. # include <climits>
  11. # include <cstdlib>
  12. # include <utility>
  13. # include <bitset>
  14. # include <cctype>
  15. # include <cassert>
  16. # include <set>
  17. # include <map>
  18. # include <deque>
  19. # include <queue>
  20. # include <stack>
  21. # include <vector>
  22. # include <functional>
  23. using namespace std;
  24.  
  25. typedef long long ll;
  26. const int maxn=2e5+;
  27. const ll mod=1e9+;
  28. const int eps=1e-;
  29. const double pi=acos(-1.0);
  30. # define mem(a,x) memset((a),(x),sizeof((a)))
  31. # define gcd(a,b) (__gcd(a, b))
  32. # define lcm(a,b) (a*b/__gcd(a, b))
  33. # define lson l,m,rt<<
  34. # define rson m+,r,rt<<|
  35. # define lowbit(x)(x&(-x))
  36.  
  37. int origin[maxn], after[maxn];
  38. map<int, int>m;///存某时间喝咖啡是在哪一天
  39. //priority_queue<int, vector<int>, greater<int> > q;
  40. queue<int>q;
  41. int main()
  42. {
  43. int n, mm, d, cnt=;
  44. cin>>n>>mm>>d;
  45.  
  46. for(int i=; i<=n; i++ )
  47. {
  48. scanf("%d", &origin[i]);
  49. after[i] = origin[i];
  50. }
  51.  
  52. sort(after+, after++n);
  53. m[after[]] = ;//时间点最靠前的在第一天
  54. q.push();
  55. for(int i=; i<=n; i++ )
  56. {
  57. int top=q.front();
  58. if( after[i]-after[top]>d )//可以在同一天
  59. {
  60. m[after[i]]=m[after[top]];
  61. q.pop();
  62. }
  63.  
  64. else
  65. {
  66. cnt++;
  67. m[after[i]] = cnt;
  68. }
  69.  
  70. q.push(i);
  71. }
  72. cout<<cnt<<endl;
  73. for(int i=; i<=n; i++ )
  74. {
  75. if( i== )
  76. printf("%d", m[origin[i]]);
  77.  
  78. else
  79. printf(" %d", m[origin[i]]);
  80. }
  81. cout<<endl;
  82. return ;
  83. }

set的做法:

  1. /* */
  2. # include <iostream>
  3. # include <stdio.h>
  4. # include <string.h>
  5. # include <string>
  6. # include <iomanip>
  7. # include <algorithm>
  8. # include <ctime>
  9. # include <cmath>
  10. # include <climits>
  11. # include <cstdlib>
  12. # include <utility>
  13. # include <bitset>
  14. # include <cctype>
  15. # include <cassert>
  16. # include <set>
  17. # include <map>
  18. # include <deque>
  19. # include <queue>
  20. # include <stack>
  21. # include <vector>
  22. # include <functional>
  23. using namespace std;
  24.  
  25. typedef long long ll;
  26. const int maxn=2e5+;
  27. const ll mod=1e9+;
  28. const int eps=1e-;
  29. const double pi=acos(-1.0);
  30. # define mem(a,x) memset((a),(x),sizeof((a)))
  31. # define gcd(a,b) (__gcd(a, b))
  32. # define lcm(a,b) (a*b/__gcd(a, b))
  33. # define lson l,m,rt<<
  34. # define rson m+,r,rt<<|
  35. # define lowbit(x)(x&(-x))
  36.  
  37. int a[maxn];
  38. set<int>s;
  39. map<int,int>mp;//喝咖啡的时间点在第几天
  40. int n, m, d;
  41. int main()
  42. {
  43. int i;
  44. cin>>n>>m>>d;
  45. s.clear();//清空set
  46. for( i=; i<=n; i++ )
  47. {
  48. cin>>a[i];
  49. s.insert(a[i]);//插入时间点
  50. }
  51.  
  52. set<int>::iterator iter;//迭代器指针iter
  53. int cnt=;
  54. int ans=;
  55.  
  56. while( s.size() )//当set容器中的元素个数不为0
  57. {
  58. iter = s.lower_bound(cnt);//在set中查找第一个大于等于cnt的数的所在位置,如果不在返回s.end()
  59. if( iter==s.end())
  60. {
  61. ans++;
  62. cnt=;
  63. }
  64.  
  65. else
  66. {
  67. mp[*iter] = ans;
  68. s.erase(*iter);//删除set中值为*iter的数
  69. cnt = *iter+d+;
  70. }
  71. }
  72. cout<<ans<<endl;
  73. for(int i=; i<=n; i++ )
  74. {
  75. if( i== )
  76. printf("%d", mp[a[i]]);
  77. else
  78. printf(" %d", mp[a[i]]);
  79. }
  80. cout<<endl;
  81. return ;
  82. }

Coffee Break的更多相关文章

  1. CF1041C Coffee Break

    CF1041C Coffee Break 题目大意: 给定nn个数和一个kk,这nn个数都不超过mm 每次从没被去掉的数里面选一个数aa,去掉aa,然后可以任意一个b(b>a+k)b(b> ...

  2. C. Coffee Break 贪心 思维 有点难 有意思

    C. Coffee Break 这个贪心之前好像写过,还是感觉挺难的,有点不会写. 这个题目大意是:给你一个数列n个元素,然后给你一天的时间,给你一个间隔时间d, 问你最少要用多少天可以把这个数列的所 ...

  3. Gym - 101911A "Coffee Break"

    传送门 题意: Monocarp得到一份工作,每天要工作 m 分钟,他有一个爱好,喜欢在休息的时候喝咖啡,但是他的老板不乐意了,就给他规定了个 时间 d,在 d 分钟内只能喝一杯咖啡. 现给出Mono ...

  4. 【CodeForces-1041C】Coffee Break(二分解决关于set,pair,upper_bound用法)

    //题意:一个的工作时间是m分钟. // 在特定的时间和咖啡 n a1,a2....an,, ai代表的是每个咖啡要在一天中对应的时间点喝掉 // 每一次喝咖啡的时间为1分钟 // 必须在一天中的ai ...

  5. A. Coffee Break(思维题,类似于邻接表的head数组用法)

    题:https://codeforces.com/gym/101911/problem/A 题意:每天工作m分钟,每次喝coffee得间隔d分钟,然后给出n个数,每个数表示想在一天中的a[i]的时刻喝 ...

  6. 2018.09.16 codeforces1041C. Coffee Break(双端队列)

    传送门 真心sb题啊. 考场上最开始看成了一道写过的原题... 仔细想了一会发现看错了. 其实就是一个sb队列. 每次插入到队首去就行了. 代码: #include<bits/stdc++.h& ...

  7. 视觉中的深度学习方法CVPR 2012 Tutorial Deep Learning Methods for Vision

    Deep Learning Methods for Vision CVPR 2012 Tutorial  9:00am-5:30pm, Sunday June 17th, Ballroom D (Fu ...

  8. javascript设计模式-工厂模式

    简单工厂模式:使用一个类来生成实例. 复杂工厂模式:使用子类来决定一个成员变量应该是哪个具体的类的实例. 简单工厂模式是由一个方法来决定到底要创建哪个类的实例, 而这些实例经常都拥有相同的接口.通过工 ...

  9. Ubuntu 13.04/12.10安装Oracle 11gR2图文教程(转)

    Ubuntu 13.04/12.10安装Oracle 11gR2图文教程 原文标题:How to Install Oracle 11G R2 Enterprise Edition Database U ...

随机推荐

  1. springcolud 的学习(一),架构的发展史

    一.传统架构 传统的SSH架构,分为三层架构 web控制层.业务逻辑层.数据库访问层. 传统架构也就是单点应用,就是大家在刚开始初学JavaEE技术的时候SSH架构或者SSM架构,业务没有进行拆分,都 ...

  2. SQLite介绍和使用

    SQLite特点: (1)轻量级,跨平台的关系型数据库,所以支持视图,事务,触发器等. (2)零配置-无需安装和管理配置,存储在单一磁盘文件中的完整的数据库 (3)数据库文件可共享,支持多种开发语言. ...

  3. 在ASP.NET MVC中加载部分视图的方法及差别

    在视图里有多种方法可以加载部分视图,包括Partial() .Action().RenderPartial().RenderAction().RenderPage()方法.下面说明一下这些方法的差别. ...

  4. 2019 智联招聘java面试笔试题 (含面试题解析)

      本人5年开发经验.18年年底开始跑路找工作,在互联网寒冬下成功拿到阿里巴巴.今日头条.智联等公司offer,岗位是Java后端开发,因为发展原因最终选择去了智联,入职一年时间了,之前面试了很多家公 ...

  5. vsftp 常见配置测试与故障排除

    匿名用户 /var/ftp        本地用户 /home/username配置vsftpd时,强烈建议·# cp /etc/vsftpd.conf /etc/vsftpd.conf1       ...

  6. python基础-函数递归

    函数递归 概念:直接或间接地重复调用函数本身,是一种函数嵌套调用的表现形式. 直接调用:在函数内部,直接调用函数本身 def foo(): print("这是foo函数") foo ...

  7. VSCode 控制台面板输出乱码 字符编码问题 PHP --已解决

    首先上一张效果图,看看是不是你想要的效果. 第一步: 按F1,输入settings.json,添加 "code-runner.runInTerminal": true, 第二步:将 ...

  8. python模块之json pickle

    1.json模块 功能:将其他形式的数据类型转化为json字符串类型,将json字符串转化为其他对应的数据类型 方法:json.dumps()  作用:将所有单引号变成双引号:将所有数据类型变成字符串 ...

  9. 网络空间安全基础篇(2)----wireshark

    wireshrak是一款通过本地端口,来抓取通过以太网获取的文件包,包括SMB HTTP FTP TELNET 等包 在网络安全比赛中最常用的就是HTTP协议,TELNET协议,FTP协议,SMB协议 ...

  10. 23.centos7基础学习与积累-009-linux目录

    从头开始积累centos7系统运用 大牛博客:https://blog.51cto.com/yangrong/p5 linux目录的特点: 1. /是所有目录的顶点. 2. 目录结构像一颗倒挂的树. ...