CF1030B.Vasya and Cornfield

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya owns a cornfield which can be defined with two integers nn and dd . The cornfield can be represented as rectangle with vertices having Cartesian coordinates (0,d),(d,0),(n,nd)(0, d), (d, 0), (n, n - d) and (nd,n)(n - d, n) .

An example of a cornfield with n=7n = 7 and d=2d = 2 .Vasya also knows that there are mm grasshoppers near the field (maybe even inside it). The ii -th grasshopper is at the point (xi,yi)(x_i, y_i) . Vasya does not like when grasshoppers eat his corn, so for each grasshopper he wants to know whether its position is inside the cornfield (including the border) or outside.

Help Vasya! For each grasshopper determine if it is inside the field (including the border).

输入格式

The first line contains two integers nn and dd ( 1d<n1001 \le d < n \le 100 ).

The second line contains a single integer mm ( 1m1001 \le m \le 100 ) — the number of grasshoppers.

The ii -th of the next mm lines contains two integers xix_i and yiy_i ( 0xi,yin0 \le x_i, y_i \le n ) — position of the ii -th grasshopper.

输出格式

Print mm lines. The ii -th line should contain "YES" if the position of the ii -th grasshopper lies inside or on the border of the cornfield. Otherwise the ii -th line should contain "NO".

You can print each letter in any case (upper or lower).

输入输出样例

  • 输入#1

    7 2
    4
    2 4
    4 1
    6 3
    4 5
    

    输出#1

    YES
    NO
    NO
    YES
    
  • 输入#2

    8 7
    4
    4 4
    2 8
    8 1
    6 1
    

    输出#2

    YES
    NO
    YES
    YES
    

说明/提示

The cornfield from the first example is pictured above. Grasshoppers with indices 11 (coordinates (2,4)(2, 4) ) and 44 (coordinates (4,5)(4, 5) ) are inside the cornfield.

The cornfield from the second example is pictured below. Grasshoppers with indices 11 (coordinates (4,4)(4, 4) ), 33 (coordinates (8,1)(8, 1) ) and 44 (coordinates (6,1)(6, 1) ) are inside the cornfield.

首页