Algorithm


A. Circle Metro
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 12n121→2→…→�→1→2→… (so the next stop after station x is equal to (x+1)(�+1) if x<n�<� and 11 otherwise). The second route visits stations in order n(n1)1n(n1)�→(�−1)→…→1→�→(�−1)→… (so the next stop after station x is equal to (x1)(�−1) if x>1�>1 and n otherwise). All trains depart their stations simultaneously, and it takes exactly 11 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.

Input

The first line contains five space-separated integers naxby (4n1004≤�≤1001a,x,b,yn1≤�,�,�,�≤�, all numbers among axby 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

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).

Examples
input
Copy
5 1 4 3 2
output
Copy
YES
input
Copy
10 2 1 9 10
output
Copy
NO
Note

In the first example, Daniel and Vlad start at the stations (1,3)(1,3). One minute later they are at stations (2,2)(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)(2,9),
  • after 11 minute (3,8)(3,8),
  • after 22 minutes (4,7)(4,7),
  • after 33 minutes (5,6)(5,6),
  • after 44 minutes (6,5)(6,5),
  • after 55 minutes (7,4)(7,4),
  • after 66 minutes (8,3)(8,3),
  • after 77 minutes (9,2)(9,2),
  • after 88 minutes (10,1)(10,1),
  • after 99 minutes (1,10)(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.

 



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include<bits/stdc++.h>
using namespace std;


#define ll long long
//#define endl '\n'
#define debug(n) cout<<(n)<<endl;
const ll INF = 2e18 + 99;

int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);

  int n, a, x, b, y;
  cin>>n>>a>>x>>b>>y;

  while(a != x && b != y){
    a++;
    b--;
    if(a == n+1){
      a = 1;
    }
    if( b == 0){
      b = n;
    }
    if(a == b){
      cout<<"YES"<<endl;
      return 0;
    }
  }
  cout<<"NO"<<endl;

}
Copy The Code & Try With Live Editor

Input

x
+
cmd
5 1 4 3 2

Output

x
+
cmd
YES
Advertisements

Demonstration


Codeforcess solution 1169-A A. Circle Metro Codeforcess solution 1169-A A. Circle Metro Codeforcess solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+