当前位置:   article > 正文

【GPLT 二阶题目集】L2-042 老板的作息表_gplt老板的作息表

gplt老板的作息表

新浪微博上有人发了某老板的作息时间表,表示其每天 4:30 就起床了。但立刻有眼尖的网友问:这时间表不完整啊,早上九点到下午一点干啥了?

本题就请你编写程序,检查任意一张时间表,找出其中没写出来的时间段。

输入格式:

输入第一行给出一个正整数 N,为作息表上列出的时间段的个数。随后 N 行,每行给出一个时间段,格式为:

hh:mm:ss - hh:mm:ss

其中 hh、mm、ss 分别是两位数表示的小时、分钟、秒。第一个时间是开始时间,第二个是结束时间。题目保证所有时间都在一天之内(即从 00:00:00 到 23:59:59);每个区间间隔至少 1 秒;并且任意两个给出的时间区间最多只在一个端点有重合,没有区间重叠的情况。

输出格式:

按照时间顺序列出时间表中没有出现的区间,每个区间占一行,格式与输入相同。题目保证至少存在一个区间需要输出。

输入样例:

  1. 8
  2. 13:00:00 - 18:00:00
  3. 00:00:00 - 01:00:05
  4. 08:00:00 - 09:00:00
  5. 07:10:59 - 08:00:00
  6. 01:00:05 - 04:30:00
  7. 06:30:00 - 07:10:58
  8. 05:30:00 - 06:30:00
  9. 18:00:00 - 19:00:00

输出样例:

  1. 04:30:00 - 05:30:00
  2. 07:10:58 - 07:10:59
  3. 09:00:00 - 13:00:00
  4. 19:00:00 - 23:59:59

  1. //先将作息表中各时间段按照起始时间进行升序排序
  2. //再判断两个时间段之间是否有其它时间段,有就输出
  3. //首尾时间段另外考虑,作息表只有一个时间段另外考虑
  4. #include <iostream>
  5. #include <map>
  6. #include <vector>
  7. using namespace std;
  8. class Time {
  9. public:
  10. int hh;
  11. int mm;
  12. int ss;
  13. bool operator==(Time& t)
  14. {
  15. if (this->hh == t.hh && this->mm == t.mm && this->ss == t.ss)
  16. return true;
  17. else
  18. return false;
  19. }
  20. void print()
  21. {
  22. printf("%02d:%02d:%02d", this->hh, this->mm, this->ss);
  23. }
  24. };
  25. class cmp {
  26. public:
  27. bool operator()(Time a, Time b) const {
  28. if (a.hh != b.hh)
  29. return a.hh < b.hh;
  30. else if (a.mm != b.mm)
  31. return a.mm < b.mm;
  32. else
  33. return a.ss < b.ss;
  34. }
  35. };
  36. int main()
  37. {
  38. int n; cin >> n;
  39. map<Time, Time, cmp> time_temp;
  40. Time t1, t2;
  41. while (n--) {
  42. scanf("%d:%d:%d - %d:%d:%d", &t1.hh, &t1.mm, &t1.ss, &t2.hh, &t2.mm, &t2.ss);
  43. time_temp.insert(make_pair(t1, t2));
  44. }
  45. vector< pair<Time, Time> > time(time_temp.begin(), time_temp.end());
  46. if (time[0].first.hh != 0 || time[0].first.mm != 0 || time[0].first.ss != 0)
  47. { //作息表是否从00:00:00开始
  48. cout << "00:00:00 - ";
  49. time[0].first.print();
  50. cout << endl;
  51. }
  52. if (time.size() > 1) { //作息表内容至少要有两条(判断二者间是否有时间差)
  53. for (int i = 0; i < time.size() - 1; i++) {
  54. if (!(time[i].second == time[i + 1].first)) {
  55. time[i].second.print();
  56. cout << " - ";
  57. time[i + 1].first.print();
  58. cout << endl;
  59. }
  60. }
  61. }
  62. int temp = time.size() - 1;
  63. if (!(time[temp].second.hh == 23 && time[temp].second.mm == 59 && time[temp].second.ss == 59))
  64. { //作息表是不是于23:59:59结束
  65. time[temp].second.print();
  66. cout << " - 23:59:59" << endl;
  67. }
  68. return 0;
  69. }

 注意事项:

如有问题,欢迎提出。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/408565
推荐阅读
相关标签
  

闽ICP备14008679号