CF1169A.Circle Metro
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The circle line of the Roflanpolis subway has n stations.
There are two parallel routes in the subway. The first one visits stations in order 1→2→…→n→1→2→… (so the next stop after station x is equal to (x+1) if x<n and 1 otherwise). The second route visits stations in order n→(n−1)→…→1→n→(n−1)→… (so the next stop after station x is equal to (x−1) if x>1 and n otherwise). All trains depart their stations simultaneously, and it takes exactly 1 minute to arrive at the next station.
Two toads live in this city, their names are Daniel and Vlad.
Daniel is currently in a train of the first route at station a and will exit the subway when his train reaches station x .
Coincidentally, Vlad is currently in a train of the second route at station b and he will exit the subway when his train reaches station y .
Surprisingly, all numbers a,x,b,y are distinct.
Toad Ilya asks you to check if Daniel and Vlad will ever be at the same station at the same time during their journey. In other words, check if there is a moment when their trains stop at the same station. Note that this includes the moments when Daniel or Vlad enter or leave the subway.
输入格式
The first line contains five space-separated integers n , a , x , b , y ( 4≤n≤100 , 1≤a,x,b,y≤n , all numbers among a , x , b , y are distinct) — the number of stations in Roflanpolis, Daniel's start station, Daniel's finish station, Vlad's start station and Vlad's finish station, respectively.
输出格式
Output "YES" if there is a time moment when Vlad and Daniel are at the same station, and "NO" otherwise. You can print each letter in any case (upper or lower).
输入输出样例
输入#1
5 1 4 3 2
输出#1
YES
输入#2
10 2 1 9 10
输出#2
NO
说明/提示
In the first example, Daniel and Vlad start at the stations (1,3) . One minute later they are at stations (2,2) . They are at the same station at this moment. Note that Vlad leaves the subway right after that.
Consider the second example, let's look at the stations Vlad and Daniel are at. They are:
- initially (2,9) ,
- after 1 minute (3,8) ,
- after 2 minutes (4,7) ,
- after 3 minutes (5,6) ,
- after 4 minutes (6,5) ,
- after 5 minutes (7,4) ,
- after 6 minutes (8,3) ,
- after 7 minutes (9,2) ,
- after 8 minutes (10,1) ,
- after 9 minutes (1,10) .
After that, they both leave the subway because they are at their finish stations, so there is no moment when they both are at the same station.