#CCC26J5. Beams of Light

Beams of Light

Beams of Light

Problem Description

Along one wall of a parking garage there are identical parking spots numbered from 1 to N. A collection of lights illuminates the parking garage. Each light shines on some number of adjacent parking spots.

image

You will be questioned about the parking spots. For each parking spot you are questioned about, your job is to determine whether or not it is illuminated by at least one light.

Input Specification

The first line of input contains a positive integer, N, representing the number of parking spots. The second line contains a non-negative integer, L, representing the number of lights. The third line contains a positive integer, Q, representing the number of parking spots you will be questioned about.

The next L lines provide information about the L lights. Line i will contain two integers, Pi and Si , separated by a single space. The first integer, 1 ≤ Pi ≤ N, represents the number of the parking spot above which a light is hung. The second integer, 0 ≤ Si ≤ N, represents the spread of the light’s beam. Light i shines on the parking spot that is directly below it. It also shines on the Si parking spots located on either side, unless there are fewer than Si spots on a side, in which case all the spots on that side will be illuminated. There could be more than one light directly above a parking spot.

The next Q lines of input each contain a positive integer between 1 and N inclusive, repre- senting the number of the parking spot you are questioned about.

La version fran¸caise figure `a la suite de la version anglaise.

The following table shows how the 15 available marks are distributed:

Marks Number of Spots Number of Lights Number of Questions
1 N ≤ 50 L ≤ 1 Q ≤ 50
2 L ≤ 50
3 L ≤ 500000 Q ≤ 500000
9 N ≤ 500000

Output Specification

There will be one line of output for each of the Q parking spots you are questioned about.

On each of these lines, output Y if the corresponding parking spot is illuminated by at least one light, or N if the corresponding parking spot is not illuminated by any light.

image

Sample Input

10
3
4
8  0
1  1
4  2
4
10
7
1

Output for Sample Input

Y
N
N
Y

Explanation of Output for Sample Input

The input describes the picture of the parking garage shown above. Parking spots 4 and 1 are illuminated by at least one light.

Parking spots 10 and 7 are not illuminated by any light.