In a police investigation, suspects were identified and now it's up to the witnesses to try to find the perpetrator. The height of every suspect was measured, but due to the unreliability of measurement, it is known only that their height is a real number from the interval from to (inclusive). At most one of the suspects is the perpetrator, and it could be the case that none of them are.
A single lineup consists of choosing two positive integers and , then taking the suspects to a separate room so that the witnesses could try to identify the perpetrator. As the witnesses could be confused if two of the suspects have the same height, a lineup is allowed only if it is possible to guarantee that no two suspects will have the same height. During a lineup, the witnesses will always be able to identify the perpetrator if he is among the chosen suspects, or they will be able to tell that he is not among them.
The lead investigator is now interested in answering questions of the following form: "If I were certain that the label of the perpetrator could only be between and , what is the minimum number of lineups needed in the worst case so that the witnesses are able to find the perpetrator, or report that he is not among the suspects?" Help the lead investigator answer of such questions.
Input Specification
The first line contains a positive integer , the number of suspects.
The following lines contain two positive integers and which represent the possible height range of the suspect with label .
The next line contains a positive integer , the number of questions.
The following lines contain two positive integers and which determine a question.
Output Specification
In lines print the answers to the corresponding questions: the minimum required number of lineups.
Constraints
In every subtask, it holds that .
Subtask | Points | Constraints |
---|---|---|
1 | 10 | |
2 | 10 | |
3 | 20 | |
4 | 20 | |
5 | 50 | No additional constraints. |
Sample Input 1
2
1 1
1 1
3
1 1
2 2
1 2
Sample Output 1
1
1
2
Sample Input 2
3
1 1
2 2
3 3
3
1 1
2 3
1 3
Sample Output 2
1
1
1
Sample Input 3
5
1 3
3 3
4 6
2 3
1 1
3
1 4
3 5
1 5
Sample Output 3
3
1
3
Explanation for Sample Output 3
For the first and the third question, it is sufficient to have three lineups: one consists of the suspect , one consists of the suspects and , and one consists of the suspects and .
For the second question, it is sufficient to have one lineup which consists of the suspects , , and .
Comments