pat 甲级 Cars on Campus (30)
Cars on Campus (30)
题目描述
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)的更多相关文章
- 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 ...
- PAT 1095 Cars on Campus
1095 Cars on Campus (30 分) Zhejiang University has 8 campuses and a lot of gates. From each gate we ...
- 【PAT甲级】1095 Cars on Campus (30 分)
题意:输入两个正整数N和K(N<=1e4,K<=8e4),接着输入N行数据每行包括三个字符串表示车牌号,当前时间,进入或离开的状态.接着输入K次询问,输出当下停留在学校里的车辆数量.最后一 ...
- 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 ...
- 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 ...
- PAT (Advanced Level) 1095. Cars on Campus (30)
模拟题.仔细一些即可. #include<cstdio> #include<cstring> #include<cmath> #include<algorit ...
- PAT甲题题解-1095. Cars on Campus(30)-(map+树状数组,或者模拟)
题意:给出n个车辆进出校园的记录,以及k个时间点,让你回答每个时间点校园内的车辆数,最后输出在校园内停留的总时间最长的车牌号和停留时间,如果不止一个,车牌号按字典序输出. 几个注意点: 1.如果一个车 ...
- 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 ...
- 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 ...
随机推荐
- nginx平滑升级的过程
1.开始之前首先查看当前的使用版本以及编译时的参数: [root@www ~]# /usr/local/nginx/sbin/nginx -V nginx version: nginx/1.12.2 ...
- 数据结构-单链表(Linked List)
#include <stdio.h> #include <stdlib.h> #define LIST_INIT_SIZE 10 #define LISTINCREMENT 1 ...
- Redis之String类型操作
接口IRedisDaoStr: package com.net.test.redis.base.dao; import java.util.List; import java.util.Map; /* ...
- 662. Maximum Width of Binary Tree
https://leetcode.com/problems/maximum-width-of-binary-tree/description/ /** * Definition for a binar ...
- stm32串口——标志位学习
/* 在USART的发送端有2个寄存器,一个是程序可以看到的USART_DR寄存器,另一个是程序看不到的移位寄存器,对应USART数据发送有两个标志,一个是TXE=发送数据寄存器空,另一个是TC=发送 ...
- printf("\033[1;33m ***** \033[0m \n");
printf("\033[1;33m Hello World. \033[0m \n"); 颜色如下: none = "\033[0m" black = &qu ...
- nowcoder N约数个数
n的约数个数 题目:t次询问,每次给你一个数n,求在[1,n]内约数个数最多的数的约数个数 数据:对于100%的数据,t <= 500 , 1 <= n <= 10000000000 ...
- 1022 D进制的A+B (20)(20 分)
1022 D进制的A+B (20)(20 分) 输入两个非负10进制整数A和B(<=\(2^{30}-1\)),输出A+B的D (1 < D <= 10)进制数. 输入格式: 输入在 ...
- A1002 A+B for Polynomials (25)(25 分)
1002 A+B for Polynomials (25)(25 分) This time, you are supposed to find A+B where A and B are two po ...
- DOS中断及程序调用
http://www.cnblogs.com/ynwlgh/archive/2011/12/12/2285017.html