[Solution] GBus count Kick Start Session Solution - Kick Start 2022
There exist some cities that are built along a straight road. The cities are numbered from left to right.
There are GBuses that operate along this road. For each GBus, the range of cities that it serves is provided: the -th gBus serves the cities with numbers between and , inclusive.
We are interested in a particular subset of cities. For each of those cities, we need to find out how many GBuses serve that particular city.
Input
The first line of the input gives the number of test cases, . Then, test cases follow; each case is separated from the next by one blank line. (Notice that this is unusual for Kickstart data sets.)
In each test case:
- The first line contains one integer : the number of GBuses.
- The second line contains 2 integers representing the ranges of cities that the buses serve, in the form ... . That is, the first GBus serves the cities numbered from to (inclusive), the second GBus serves the cities numbered from to (inclusive), and so on.
- The third line contains one integer : the number of cities we are interested in, as described above. (Note that this is not necessarily the same as the total number of cities in the problem, which is not given.)
- Finally, there are more lines; the -th of these contains the number of a city we are interested in.
Output
For each test case, output one line containing Case #:
, where is the number of the test case (starting from 1), and is a list of integers, in which the -th integer is the number of GBuses that serve city .
Limits
Memory limit: 1 GB.
.
Test Set 1
Time limit: 60 seconds.
.
, for all .
, for all .
, for all .
.
Test Set 2
Time limit: 120 seconds.
.
, for all .
, for all .
, for all .
.
No comments:
Post a Comment