第十一章 模拟 16 AcWing 1585. 校园内的汽车
原题链接
算法标签
模拟 字符串 处理哈希表
思路
如何得到合法的配对记录
将每辆车的进出事件通过哈希表存储,(对于每辆车)按照时间顺序排序后, 若该条记录状态为in, 下一条记录状态为out, 即为合法状态,保留。否则, 非法状态,删除。
如何计算出查询时刻校园内的汽车数量
将所有车辆合法记录按照时间进行排序,遍历所有车辆合法记录, 对于状态为in的记录,汽车数量+1。对于状态为out的记录,汽车数量 - 1。
代码
#pragma GCC optimize(2)
#pragma GCC optimize(3)
#include<bits/stdc++.h>
#define int long long
#define xx first
#define yy second
#define ump unordered_map
#define us unordered_set
#define pq priority_queue
#define pb push_back
#define rep(i, a, b) for(int i=a;i<b;++i)
#define Rep(i, a, b) for(int i=a;i>=b;--i)
using namespace std;
typedef pair<int, int> PII;
const int N=10005, inf=0x3f3f3f3f3f3f3f3f, mod=1e9+7;
const double Exp=1e-8;
struct Car{
int tm,st;
bool operator<(const Car &c){
return tm<c.tm;
}
};
inline int rd(){
int s=0,w=1;
char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();}
while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
return s*w;
}
void put(int x) {
if(x<0) putchar('-'),x=-x;
if(x>=10) put(x/10);
putchar(x%10^48);
}
int get(vector<Car> &x){
int res=0;
for(int i=0; i<x.size(); i+=2){
res+=x[i+1].tm-x[i].tm;
}
return res;
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, k;
scanf("%lld %lld", &n, &k);
ump<string, vector<Car>> cs;
char id[10], st[10];
rep(i, 0, n){
int hh, mm, ss;
scanf("%s %lld:%lld:%lld %s", id, &hh, &mm, &ss, st);
int tm=hh*3600+mm*60+ss;
int s=0;
if(st[0]=='o'){
s=1;
}
cs[id].pb({tm, s});
}
vector<Car> vc;
for(auto &c:cs){
// auto &x 需要引用符号
auto &x=c.yy;
sort(x.begin(), x.end());
int kk=0;
rep(i, 0, x.size()){
if(i+1<x.size()&&x[i].st==0&&x[i+1].st==1){
x[kk++]=x[i], x[kk++]=x[i+1], ++i;
}
}
x.erase(x.begin()+kk, x.end());
rep(i, 0, kk){
vc.pb(x[i]);
}
}
sort(vc.begin(), vc.end());
int kk=0, cnt=0;
while(k--){
int hh, mm, ss;
scanf("%lld:%lld:%lld", &hh, &mm, &ss);
int t=hh*3600+mm*60+ss;
while(kk<vc.size()&&vc[kk].tm<=t){
if(vc[kk].st==0){
cnt++;
}else{
cnt--;
}
kk++;
}
printf("%lld\n", cnt);
}
int mx=0;
for(auto &x:cs){
mx=max(mx, get(x.yy));
}
vector<string> res;
for(auto &x:cs){
if(get(x.yy)==mx){
res.pb(x.xx);
}
}
sort(res.begin(), res.end());
rep(i, 0, res.size()){
printf("%s ", (res[i]).c_str());
}
printf("%02lld:%02lld:%02lld\n", mx/3600, mx%3600/60, mx%60);
return 0;
}
参考文献
AcWing 1585. 校园内的汽车(PAT甲级辅导课)y总视频讲解
原创不易
转载请标明出处
如果对你有所帮助 别忘啦点赞支持哈