• PAT A1095 Cars on Campus (30 分)——排序,时序,从头遍历会超时


    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 (104​​), the number of records, and K (8×104​​) the number of queries. Then N lines follow, each gives a record in the format:

    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:

    16 7
    JH007BD 18:00:01 in
    ZD00001 11:30:08 out
    DB8888A 13:00:00 out
    ZA3Q625 23:59:50 out
    ZA133CH 10:23:00 in
    ZD00001 04:09:59 in
    JH007BD 05:09:59 in
    ZA3Q625 11:42:01 out
    JH007BD 05:10:33 in
    ZA3Q625 06:30:50 in
    JH007BD 12:23:42 out
    ZA3Q625 23:55:00 in
    JH007BD 12:24:23 out
    ZA133CH 17:11:22 out
    JH007BD 18:07:01 out
    DB8888A 06:30:50 in
    05:10:00
    06:30:50
    11:00:00
    12:23:42
    14:00:00
    18:00:00
    23:59:00
    

    Sample Output:

    1
    4
    5
    2
    1
    0
    1
    JH007BD ZD00001 07:20:09
    
     
     1 #include <stdio.h>
     2 #include <algorithm>
     3 #include <set>
     4 //#include <string.h>
     5 #include <vector>
     6 //#include <math.h>
     7 #include <queue>
     8 #include <iostream>
     9 #include <string>
    10 #include <map>
    11 using namespace std;
    12 const int maxn = 1030;
    13 const int inf = 99999999;
    14 int n,k,m,l;
    15 struct node{
    16     string id;
    17     int time,status;
    18 };
    19 vector<node> v,valid;
    20 bool cmp(const node &a,const node &b){
    21     return a.id==b.id?a.time<b.time:a.id<b.id;
    22 }
    23 bool cmp2(const node &a,const node &b){
    24     return a.time<b.time;
    25 }
    26 map<string,int> mp;
    27 int main(){
    28     scanf("%d %d",&n,&k);
    29     for(int i=0;i<n;i++){
    30         string id,sta;
    31         int h,m,s;
    32         cin>>id;
    33         scanf("%d:%d:%d ",&h,&m,&s);
    34         cin>>sta;
    35         int time = 3600*h+60*m+s;
    36         node tmp;
    37         tmp.id=id;
    38         tmp.time=time;
    39         int status=0;
    40         if(sta=="out") status=1;
    41         tmp.status=status;
    42         v.push_back(tmp);
    43     }
    44     sort(v.begin(),v.end(),cmp);
    45     int longest=0;
    46     for(int i=0;i<n-1;i++){
    47         if(v[i].id == v[i+1].id && v[i].status==0 && v[i+1].status==1){
    48             valid.push_back(v[i]);
    49             valid.push_back(v[i+1]);
    50             mp[v[i].id] += v[i+1].time - v[i].time;
    51             if(mp[v[i].id]>longest) longest = mp[v[i].id];
    52         }
    53     }
    54     sort(valid.begin(),valid.end(),cmp2);
    55     int pos=0,res=0;
    56     for(int j=0;j<k;j++){
    57         int h,m,s;
    58         scanf("%d:%d:%d",&h,&m,&s);
    59         int time = 3600*h+60*m+s;
    60         //int res=0;
    61         for(int i=pos;i<valid.size();i++){
    62             if(valid[i].time<=time){
    63                 if(valid[i].status==0) res++;
    64                 else res--;
    65             }
    66             else{
    67                 pos=i;
    68                 break;
    69             }
    70         }
    71         printf("%d
    ",res);
    72     }
    73     vector<string> maxs;
    74     for(auto it:mp){
    75         if(it.second==longest){
    76             maxs.push_back(it.first);
    77         }
    78     }
    79     for(int i=0;i<maxs.size();i++){
    80         printf("%s ",maxs[i].c_str());
    81     }
    82     printf("%02d:%02d:%02d",longest/3600,longest%3600/60,longest%3600%60);
    83 }
    View Code

    注意点:需要两个排序函数,只根据题目要求的排序函数不够用,每次要从头遍历就会超时。注意到题目里特别给出note,查询按时间前后来,因此考虑第二个用时间排序。把所有有效记录再保存到一个vector中,对其进行时间排序,针对每一次查询,不需要从头开始,只要记录上一次查询到的位置,继续查询即可。每进入一次计数加1,出去减1,由于保证了所有记录都是有效的,直接输出计数即为答案。

    ---------------- 坚持每天学习一点点
  • 相关阅读:
    [翻译]使用设计模式简化.NET中菜单和Form元素之间的关系
    [AWDwR4]13章出错 protect_against_forgery
    使用存储过程(22)
    建立数据库连接(19)
    对数据库添加数据(21)
    ADO.NET常用对象(18)
    数据展现Repeater控件(25)
    content控件(24)
    对数据库增加数据(21)
    行为存储过程(23)
  • 原文地址:https://www.cnblogs.com/tccbj/p/10457467.html
Copyright © 2020-2023  润新知