CF868B Race Against Time

Posted 王宜鸣

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF868B Race Against Time相关的知识,希望对你有一定的参考价值。

思路:

模拟。少写了一个等号FST了,好气啊。

实现:

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 int main()
 4 {
 5     int h, m, s, t1, t2;
 6     while (cin >> h >> m >> s >> t1 >> t2)
 7     { 
 8         int cnt = 0;
 9         int x = min(t1, t2), y = max(t1, t2);
10         if (h >= x && h < y) cnt++;
11         if (m >= x * 5 && m < y * 5) cnt++;
12         if (s > x * 5 && s < y * 5) cnt++;
13         if (cnt == 0 || cnt == 3) puts("YES");
14         else puts("NO");
15     }
16     return 0;
17 }

 

以上是关于CF868B Race Against Time的主要内容,如果未能解决你的问题,请参考以下文章

CF671EOrganizing a Race 单调栈+线段树

JUC并发编程 -- 共享代来的问题(操作统一资源) & 临界区 Critical Section & 竞态条件 Race Condition

[IOI2011]Race

一词多义

CF1072C Cram Time

坑The server time zone value '?й???????' is unrecognized or represents more than one time z(代