车辆进出记录统计
1. 原文
Zhejiang University has 8 campuses and a lot of gates. From each gate we can collect the in/out times and the plate numbers of the cars crossing the gate. Now with all the information available, you are supposed to tell, at any specific time point, the number of cars parking on campus, and at the end of the day find the cars that have parked for the longest time period.
Input Specification:
Each input file contains one test case. Each case starts with two positive integers N (≤$10^4$), the number of records, and K (≤8×$10^4$) the number of queries. Then N lines follow, each gives a record in the format:
1 | plate_number hh:mm:ss status |
where plate_number
is a string of 7 English capital letters or 1-digit numbers; hh:mm:ss
represents the time point in a day by hour:minute:second, with the earliest time being 00:00:00
and the latest 23:59:59
; and status
is either in
or out
.
Note that all times will be within a single day. Each in
record is paired with the chronologically next record for the same car provided it is an out
record. Any in
records that are not paired with an out
record are ignored, as are out
records not paired with an in
record. It is guaranteed that at least one car is well paired in the input, and no car is both in
and out
at the same moment. Times are recorded using a 24-hour clock.
Then K lines of queries follow, each gives a time point in the format hh:mm:ss
. Note: the queries are given in ascending order of the times.
output Specification:
For each query, output in a line the total number of cars parking on campus. The last line of output is supposed to give the plate number of the car that has parked for the longest time period, and the corresponding time length. If such a car is not unique, then output all of their plate numbers in a line in alphabetical order, separated by a space.
Sample Input:
1 | 16 7 |
Sample output:
1 | 1 |
2. 解析
车辆的进出记录应该对应 in- 1 out- -1
DB8888A 23450 1
DB8888A 46800 -1
统计所有记录,排除不对应的记录
if(car[i].number==car[i+1].number&&car[i].flag==1&&car[i+1].flag==-1)
记录车辆数
cnt[i]=ans[i].flag+cnt[i-1];
输出
1
2
3
4if (ans[j].time>nowtime){
printf("%d\n", cnt[j-1]);
break;
}
3. AC代码
1 |
|