loj#P2585. 「APIO2018」新家
「APIO2018」新家
Description
Wu-Fu Street is an incredibly straight street that can be described as a one-dimensional number line, and each building’s location on the street can be represented with just one number. Xiao-Ming the TimeTraveler knows that there are n stores of k store-types that had opened, has opened, or will open on the street. The -th store can be described with four integers: representing the store’s location, the store’s type, the year when it starts its business, and the year when it is closed.
Xiao-Ming the Time Traveler wants to choose a certain year and a certain location on Wu-Fu Street to live in. He has narrowed down his preference list to location-year pairs. The -th pair can be described with two integers: representing the location and the year of the pair. Now he wants to evaluate the life quality of these pairs. He defines the inconvenience index of a location-year pair to be the inaccessibility of the most inaccessible store-type of that pair. The inaccessibility of a location-year pair to store-type is defined as the distance from the location to the nearest type- store that is open in the year. We say the -th store is open in the year if Note that in some years, Wu-Fu Street may not have all the store-types on it. In that case, the inconvenience index is defined as .
Your task is to help Xiao-Ming find out the inconvenience index of each location-year pair.
Input
The first line of input contains integer numbers and : number of stores, number of types and number of queries .
Next lines contain descriptions of stores. Each description is four integers: and .
Next lines contain the queries. Each query is two integers: , and .
Output
Output integers: for each query output its the inconvenience index.
4 2 4
3 1 1 10
9 2 2 4
7 2 5 7
4 1 8 10
5 3
5 6
5 9
1 10
4
2
-1
-1
2 1 3
1 1 1 4
1 1 2 6
1 3
1 5
1 7
0
0
-1
1 1 1
100000000 1 1 1
1 1
99999999
Limits And Hints
Subtask 1 (5 points):
Subtask 2 (7 points):
Subtask 3 (10 points): for all stores.
Subtask 4 (23 points): for all stores.
Subtask 5 (35 points):
Subtask 6 (20 points):