CCC '26 S2 - Beams of Light

View as PDF

Submit solution


Points: 7 (partial)
Time limit: 3.0s
Memory limit: 1G

Problem type
Canadian Computing Competition: 2026 Stage 1, Junior #5, Senior #2

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.

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, P_i and S_i, separated by a single space. The first integer, 1\leq P_i\leq N, represents the number of the parking spot above which a light is hung. The second integer, 0\leq S_i\leq 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 S_i parking spots located on either side, unless there are fewer than S_i 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, representing the number of the parking spot you are questioned about.

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

MarksNumber of SpotsNumber of LightsNumber of Questions
1N\leq 50L\leq 1Q\leq 50
2N\leq 50L\leq 50Q\leq 50
3N\leq 50L\leq 500\,000Q\leq 500\,000
9N\leq 500\,000L\leq 500\,000Q\leq 500\,000

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.

Sample Input

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

Sample Output

Y
N
N
Y

Explanation for Sample Output

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.


Comments

There are no comments at the moment.