当前位置:   article > 正文

L2-042 老板的作息表 sscanf() sprintf()_老板的作息表c语言

老板的作息表c语言

 输入格式: 

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

hh:mm:ss - hh:mm:ss

其中 hhmmss 分别是两位数表示的小时、分钟、秒。第一个时间是开始时间,第二个是结束时间。题目保证所有时间都在一天之内(即从 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

 Code:

  1. #include <iostream>
  2. #include <cstring>
  3. #include <algorithm>
  4. using namespace std;
  5. const int N = 24 * 60 * 60 - 1;
  6. int n ;
  7. bool st[N];
  8. int getsecond(char s[]){
  9. int hour , minute , second ;
  10. sscanf(s , "%02d:%02d:%02d" , &hour , &minute , &second);
  11. return hour * 3600 + minute * 60 + second ;
  12. }
  13. string formate(int x){
  14. int hour = x / 3600 ;
  15. x %= 3600 ;
  16. int minute = x / 60;
  17. int second = x % 60 ;
  18. char c[10] ;
  19. sprintf(c , "%02d:%02d:%02d", hour , minute , second);
  20. return c;
  21. }
  22. int main()
  23. {
  24. cin >> n ;
  25. while(n -- ){
  26. char a[10] , b[10] , c[10] ;
  27. scanf("%s%s%s", a, b , c);
  28. int l = getsecond(a) , r = getsecond(c);
  29. for(int i = l ; i < r ; i++ ) st[i] = true ;
  30. }
  31. for(int i = 0 , j = 0; i < N ; i++ ){
  32. if( !st[i]){
  33. j = i + 1;
  34. while(j < N && !st[j]) j++ ;
  35. cout << formate(i) << " - " << formate(j) << endl;
  36. i = j ;
  37. }
  38. }
  39. return 0;
  40. }
  1. #include <iostream>
  2. #include <algorithm>
  3. #include <vector>
  4. using namespace std;
  5. #define l first
  6. #define r second
  7. typedef pair<string ,string> PSS ;
  8. vector< PSS > v;
  9. int n , m ;
  10. int main() {
  11. scanf("%d", &n) ;
  12. v.push_back({"00:00:00", "00:00:00"});//起始时间
  13. for (int i = 0; i < n; i++) {
  14. string a,b,c;
  15. cin >> a >> b >> c;
  16. v.push_back({a, c});
  17. }
  18. v.push_back({"23:59:59", "23:59:59"});//结束时间
  19. sort(v.begin(), v.end());
  20. for (int i = 1; i <= n + 1; i++) {
  21. if(v[i - 1].r < v[i].l) {
  22. cout << v[i - 1].r << " - " << v[i].l << endl;
  23. }
  24. }
  25. return 0;
  26. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/408543
推荐阅读
相关标签
  

闽ICP备14008679号