2742.Pie or die

Time Limit: 1s Memory Limit: 256MB

Volodya and Vlad play the following game. There are k pies at the cells of n \times m board. Each turn Volodya moves one pie to the neighbouring (by side) cell. If the pie lies at the border of the board then Volodya can move it outside the board, get the pie and win. After Volodya's move, Vlad bans some edge at the border of the board of length 1 (between two knots of the board) so that Volodya is not able to move the pie outside the board through this edge anymore. The question is: will Volodya win this game? We suppose both players follow the optimal strategy.

2742_1.png

Input Format(From the terminal/stdin)

First line contains 3 integers, separated by space: 1 \le n,m \le 100 - dimensions of the board and 0 \le k \le 100 - the number of pies. Each of the next k lines contains 2 integers, separated by space: 1 \le x \le n, 1 \le y \le m - coordinates of the corresponding pie. There could be more than one pie at a cell.

Output Format(To the terminal/stdout)

Output only one word: "YES" - if Volodya wins, "NO" - otherwise.

Sample Input 1

Copy
2 2 1
1 2
 · · \n
 · \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
3 4 0
 · · \n

Sample Output 2

Copy
NO
  \n

Sample Input 3

Copy
100 50 2
50 25
50 25
   ·  · \n
  ·  \n
  ·  \n

Sample Output 3

Copy
NO
  \n

Submit

请先 登录

© 2025 FAQs