Cars on Campus (30)

时间限制 1000 ms 内存限制 65536 KB 代码长度限制 100 KB 判断程序 Standard 

题目描述

Zhejiang University has 6 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.

输入描述:

Each input file contains one test case.  Each case starts with two positive integers N (<= 10000), the number of records, and K (<= 80000) 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.

输出描述:

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.

输入例子:

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

输出例子:

1
4
5
2
1
0
1
JH007BD ZD00001 07:20:09
题意:一天当中不同时间段都会有车进或出停车场,给定一个时间点,判断这个时间点上有多少车停留在停车场上。并且最后输出在停车场上逗留时间最长的车的号码以及逗留时间。
思路:要注意每辆车每天可能会多次进出停车场,并且每一个进场的记录必须与时间离它最近的一个出场纪录配对,匹配不到出场纪录则这个进场记录无效,匹配不到进场记录的出场纪录也无效。
直接模拟,不过发现有一个样例有时过,有时超时,有点卡时,后来看了别人的题解,发现可以用树状数组优化,以1秒为以1单位,所有时间转化成秒。这样若有一个记录,车辆进出场时间段为[l,r],
那么树状数组维护的[l,r]区间每个位置都从0变成1即可。查询一辆车某个时间点是否在场,只需判断这个时间点是否为1。最后找逗留时间最长的车辆,对树状数组取和即可知道一辆车逗留时长。有时间时可以再用树状数组做做
模拟代码:
#define _CRT_SECURE_NO_DEPRECATE
#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
#include<vector>
#include<string>
#include<iomanip>
#include<map>
#include<stack>
#include<set>
#include<queue>
using namespace std;
#define N_MAX 10000+5
#define INF 0x3f3f3f3f
typedef long long ll;
int n, k;
struct Time {
int value;
bool is_in=;
Time() {}
Time(int value,bool is_in):value(value),is_in(is_in) {}
bool operator < (const Time & b) const{
return value < b.value;
}
}; struct Car {
string id;
set<Time>time;
vector<pair<int,int> >vec;//存储一对进出的信息
int sum_time=;
}car[N_MAX];
map<string, int>car_index;
int tran(int h,int min,int s) {
return h * + min * + s;
}
vector<int> recover(int x) {
vector<int>vec; vec.resize();
vec[]=(x / );
x %= ;
vec[]=(x / );
x %= ;
vec[]=x;
return vec;
}
int main() {
while (scanf("%d%d",&n,&k)!=EOF) {
int num = ;
for (int i = ; i < n;i++) {
int hour, min, sec, value; string id; char status[],Id[];
scanf("%s",Id);
id = Id;
scanf("%d:%d:%d",&hour,&min,&sec);value = tran(hour, min, sec);
scanf("%s",status);
if (status[] == 'i') {
if (car_index[id] == ) { car_index[id] = num++; car[car_index[id]].id = id; }//添加新车记录
car[car_index[id]].time.insert(Time(value,));
}
else {
if (car_index[id] == ) { car_index[id] = num++; car[car_index[id]].id = id; }//添加新车记录
car[car_index[id]].time.insert(Time(value,));
}
} for (int i = ; i < num;i++) {//筛选正确信息
bool flag = ;//判断是否有需要匹配的时间点
Time need_match;
for (set<Time>::iterator it = car[i].time.begin(); it != car[i].time.end();it++) {
Time time = *it;
if (!flag&&time.is_in) { flag = ; need_match = time; }
else if (flag&&time.is_in) need_match = time;
else if (flag&&time.is_in == ) {
car[i].vec.push_back(make_pair(need_match.value, time.value));
car[i].sum_time += time.value - need_match.value;
flag = ;
}
}
} while (k--) {
int hour, min, sec, time,cnt=;
scanf("%d:%d:%d", &hour, &min, &sec);
time = tran(hour, min, sec);
for (int i = ; i < num;i++) {
for (int j = ; j < car[i].vec.size();j++) {
if (time >= car[i].vec[j].first&&time < car[i].vec[j].second) {
cnt++; break;
}
}
}
printf("%d\n",cnt);
}
set<string>S;
int max_time=;
for (int i = ; i < num;i++) {
if (car[i].sum_time > max_time) {
max_time = car[i].sum_time;
S.clear();
S.insert(car[i].id);
}
else if (car[i].sum_time == max_time) {
S.insert(car[i].id);
}
}
for (set<string>::iterator it = S.begin(); it != S.end();it++) {
printf("%s ",(*it).c_str());
}
vector<int>rec = recover(max_time);
printf("%02d:%02d:%02d\n",rec[],rec[],rec[]);
}
return ;
}

pat 甲级 Cars on Campus (30)的更多相关文章

  1. A1095 Cars on Campus (30)(30 分)

    A1095 Cars on Campus (30)(30 分) Zhejiang University has 6 campuses and a lot of gates. From each gat ...

  2. PAT 1095 Cars on Campus

    1095 Cars on Campus (30 分) Zhejiang University has 8 campuses and a lot of gates. From each gate we ...

  3. 【PAT甲级】1095 Cars on Campus (30 分)

    题意:输入两个正整数N和K(N<=1e4,K<=8e4),接着输入N行数据每行包括三个字符串表示车牌号,当前时间,进入或离开的状态.接着输入K次询问,输出当下停留在学校里的车辆数量.最后一 ...

  4. PAT (Advanced Level) Practise - 1095. Cars on Campus (30)

    http://www.patest.cn/contests/pat-a-practise/1095 Zhejiang University has 6 campuses and a lot of ga ...

  5. 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 time ...

  6. PAT (Advanced Level) 1095. Cars on Campus (30)

    模拟题.仔细一些即可. #include<cstdio> #include<cstring> #include<cmath> #include<algorit ...

  7. PAT甲题题解-1095. Cars on Campus(30)-(map+树状数组,或者模拟)

    题意:给出n个车辆进出校园的记录,以及k个时间点,让你回答每个时间点校园内的车辆数,最后输出在校园内停留的总时间最长的车牌号和停留时间,如果不止一个,车牌号按字典序输出. 几个注意点: 1.如果一个车 ...

  8. 1095. Cars on Campus (30)

    Zhejiang University has 6 campuses and a lot of gates. From each gate we can collect the in/out time ...

  9. 1095 Cars on Campus (30)(30 分)

    Zhejiang University has 6 campuses and a lot of gates. From each gate we can collect the in/out time ...

随机推荐

  1. es6中的promise解读

    目录 什么是promise? promise的优点 回调地狱问题  Promise的三种状态 一个简单的promise promise中的then 利用promise解决回调地狱 promise的链式 ...

  2. NOIP2018 全国热身赛 第二场 (不开放)

    NOIP2018 全国热身赛 第二场 (不开放) 题目链接:http://noi.ac/contest/26/problem/60 一道蛮有趣的题目. 然后比赛傻逼了. 即将做出来的时候去做别的题了. ...

  3. Mybatis 插入一条或批量插入 返回带有自增长主键记录

    首先讲一下,  插入一条记录返回主键的 Mybatis 版本要求低点,而批量插入返回带主键的 需要升级到3.3.1版本,3.3.0之前的都不行, <dependency> <grou ...

  4. Docker容器学习--1

    Docker是PaaS 提供商 dotCloud 开源的一个基于 LXC 的高级容器引擎,源代码托管在 Github 上, 基于go语言并遵从Apache2.0协议开源.Docker是通过内核虚拟化技 ...

  5. python使用PyQt5,及QtCreator,qt-unified界面设计以及逻辑实现

    1.环境安装: 1.安装pyQt5 pip3 install pyQt5   2.安装设计器 pip3 install pyQt5-tools  (英文版的) 我是用的是自己Windows上安装的qt ...

  6. INNODB insert query end state

    innodb_flush_log_at_trx_commit=2 innodb_flush_method=O_DIRECT (for non-windows machine) innodb_buffe ...

  7. thinkphp 分页的 实现 和样式 分享

    aaarticlea/png;base64,iVBORw0KGgoAAAANSUhEUgAAAgoAAABlCAIAAACjnlykAAAI8UlEQVR4nO3bP2/bSBrH8eSQ5rq0eh ...

  8. Python9-From-CSS-day48

    1.form表单相关内容前后端有数据交互的时候用form表单form表单提交数据的几个注意事项: 1.所有获取用户输入的标签都必须放在form表单里面 2.action 控制着往哪里提交 3.inpu ...

  9. Python9-MySQL-Homework-day43

    表结构 SET NAMES utf8; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure f ...

  10. Apache虚拟主机测试

    一.虚拟机主机简介 部署多个站点,每个站点,希望用不同的域名和站点目录,或者是不同的端口,或不同的ip,就需要虚拟主机功能.简单的说一个http服务要配置多个站点,就需要虚拟主机.(一句话一个http ...