CF767B 【The Queue】 题解--zhengjun
作者:互联网
solution
一道贪心题。
如果有两个人分别在\(x\)和\(y\)来(\(x<y\)且这两个人来的时刻的中间没有其他人)
那么\(Vasya\)从\(x+m\)到\(y-1\)这段时间来都一样,那么我们就枚举每一个人,然后看看如果\(Vasya\)在这个人之前插进去最少要等多长时间,更新答案就可以了
#include<cstdio>
#include<algorithm>
#define ll long long
using namespace std;
int n;
ll s,e,m,x;
ll ans,minx,last;//答案,最少要等多长时间,上一个人什么时候结束
int main(){
scanf("%lld%lld%lld%d",&s,&e,&m,&n);
ans=minx=1e15;
for(int i=1;i<=n;i++){
scanf("%lld",&x);
if(x==0||x+m>e)continue;
last=max(x-1,s);//更新这一次Vasya要从哪里插进去
if(last+m<=e&&s-(x-1)<=minx){//比答案更优,更新
minx=s-(x-1);
ans=min(s,x-1);
}
s=max(x,s)+m;//更新上一个人的结束时间
}
if(s+m<=e)ans=s;//如果到了最后没有人去排队,那么Vasya就在这个时候去
printf("%lld",ans);
return 0;
}
标签:Vasya,minx,last,int,题解,ll,Queue,lld%,CF767B 来源: https://www.cnblogs.com/A-zjzj/p/16365771.html