4235.Petya and Square

Time Limit: 1s Memory Limit: 256MB

Little Petya loves playing with squares. Mum bought him a square 2n \times 2n in size. Petya marked a cell inside the square and now he is solving the following task.

The task is to draw a broken line that would go along the grid lines and that would cut the square into two equal parts. The cutting line should not have any common points with the marked cell and the resulting two parts should be equal up to rotation.

Petya wants to determine whether it is possible to cut the square in the required manner given the sizes of the square side and the coordinates of the marked cell. Help him.

Input Format(From the terminal/stdin)

The first line contains three space-separated integers 2n, x and y (2 \le 2n \le 100,1 \le x,y \le 2n), representing the length of a square's side and the coordinates of the marked cell. It is guaranteed that 2n is even.

The coordinates of the marked cell are represented by a pair of numbers x y, where x represents the number of the row and y represents the number of the column. The rows and columns are numbered by consecutive integers from 1 to 2n. The rows are numbered from top to bottom and the columns are numbered from the left to the right.

Output Format(To the terminal/stdout)

If the square is possible to cut, print "YES", otherwise print "NO" (without the quotes).

Sample Input 1

Copy
4 1 1
 · · \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
2 2 2
 · · \n

Sample Output 2

Copy
NO
  \n

Hints

A sample test from the statement and one of the possible ways of cutting the square are shown in the picture:

4235_1.png

Submit

请先 登录

© 2025 FAQs