bzoj 5140 [Usaco2017 Dec]A Pie for a Pie

网友投稿 287 2022-09-02

bzoj 5140 [Usaco2017 Dec]A Pie for a Pie

​​ Description

Bessie and Elsie have each baked N pies (1≤N≤10^5). Each of the 2N pies has a tastiness value acco rding to Bessie and a (possibly different) tastiness value according to Elsie.Bessie is thinking abo ut giving one of her pies to Elsie. If Elsie receives a pie from Bessie, she will feel obligated to give one of her pies to Bessie. So as to not appear stingy nor flamboyant, Elsie will try to pick a pie that is at least as tasty (in Elsie’s eyes) as the pie she received, but no more than D units ta stier (0≤D≤10^9). Such a pie may not exist, in which case Elsie will adopt a pseudonym and exile h erself to Japan.But if Elsie does give Bessie a pie in return, Bessie will similarly try to give Els ie a pie which is at least as tasty but no more than DD units tastier (in Bessie’s eyes) as the pie Elsie just gave her. Should this be impossible, Bessie too will exile herself. Otherwise she will gi ve her chosen pie to Elsie. This cycle will continue until one of the cows is exiled, an unhappy out come, or one of the cows receives a pie which she accords a tastiness value of 0, in which case the gift exchange will end and both cows will be happy.Note that a pie may not be gifted twice, nor can either cow return a pie gifted to her.For each of the NN pies Bessie could select as her initial gif t to Elsie, determine the minimum number of pies that could possibly be gifted in the resulting exch ange before the cows are happy. 两只牛,牛A和牛B,他们对水果派的品味不同,每个人都有n<=1e5个派,每个派都有两种得分a[i], b[i],其中a[ i]是牛A对该派的评分,b[i]是牛B的评分, 0 <= a[i], b[i] <= 1e9。两只牛开始礼尚往来,从牛A开始,它选一 个pie给牛B,设这个pie的评分是(a[i], b[i])。此时牛B为了不失礼节(不太小气,也不要太谄媚)要选出一个B 评分在[b[i], b[i]+d]范围内的pie(a[j], b[j]),给A。同理,A又要选出一个A评分在[a[j], a[j]+d]范围内的pi e给B,如此往复。每个pie都只能传递一次。如果A收到了一个A评分为0的pie,或者B收到了一个B评分为0的pie, 那么礼尚往来就愉快的结束了。否则,就不愉快结束(即一个人无法选出合法的pie给对方时)。下面让你输出, 对于A的每一个pie,如果第一轮A把这个pie交给B,礼尚往来最少可以几轮愉快结束?如果无法愉快结束,就输出-1

Input

The first line contains the two integers N and D. The next 2N lines contain two space-separated integers each, respectively denoting the value of a particular pie according to Bessie, and the value of that pie according to Elsie. The first N lines refer to Bessie’s pies, and the remaining N lines refer to Elsie’s pies. It is guaranteed that all tastiness values are in the range [0,10^9]

Output

There should be N lines in the output. Line i should contain a single integer: the minimum number of pies that could be gifted in a happy gift exchange started with Bessie’s pie i. If no gift exchange starting with pie i is happy, then line i should contain the single integer -1 instead.

Sample Input

2 1 1 1 5 0 4 2 1 4 Sample Output

3 1 HINT

Source

Gold

可以看出这是一个最短路问题 那么不妨从每一个终止状态逆推回去

那么每一个派相当于一个点 然后从任意一个=0的地方往回bfs 如何bfs 这个边相当于假设我现在在x节点 那么y节点 代表我收到了来自另一个人的y 我现在要回赠他x

注意这个makepair里第二关键字给0 否则有些相同权值的他会找不到..

#include#include#include#include#include#define pa pair#define N 200020#includeusing namespace std;inline char gc(){ static char now[1<<16],*S,*T; if (T==S) {T=(S=now)+fread(now,1,1<<16,stdin);if (T==S) return EOF;} return *S++;}inline int read(){ int x=0,f=1;char ch=gc(); while(!isdigit(ch)) {if (ch=='-') f=-1;ch=gc();} while(isdigit(ch)) x=x*10+ch-'0',ch=gc(); return x*f;}const int OUT_LEN=1<<16;char obuf[OUT_LEN],*oh=obuf;inline void write_char(char c){ if (oh==obuf+OUT_LEN) fwrite(obuf,1,OUT_LEN,stdout),oh=obuf; *oh++=c;}templateinline void W(T x){ static int buf[30],cnt; if (!x) write_char('0');else{ if (x<0) write_char('-'),x=-x; for (cnt=0;x;x/=10) buf[++cnt]=x%10+48; while(cnt) write_char(buf[cnt--]); }}inline void flush(){fwrite(obuf,1,oh-obuf,stdout);}set::iterator it;sets1,s2;queue q;int a[N],b[N],n,d,dis[N];int main(){ freopen("bzoj5140.in","r",stdin); n=read();d=read();memset(dis,-1,sizeof(dis)); //s1.insert(make_pair(3,1));s1.insert(make_pair(3,3));// printf("%d\n",s1.size()); for (int i=1;i<=n<<1;++i) a[i]=-read(),b[i]=-read(); for (int i=1;i<=n;++i){ if (!b[i]) dis[i]=1,q.push(i); else s1.insert(make_pair(b[i],i)); if (!a[n+i]) dis[n+i]=1,q.push(n+i); else s2.insert(make_pair(a[n+i],n+i)); } while(!q.empty()){ int x=q.front();q.pop(); if (x<=n){ while(1){ it=s2.lower_bound(make_pair(a[x],0)); if (it==s2.end()||it->first>a[x]+d) break; int y=it->second;dis[y]=dis[x]+1;s2.erase(it);q.push(y); } }else{ while(1){ it=s1.lower_bound(make_pair(b[x],0)); if (it==s1.end()||it->first>b[x]+d) break; int y=it->second;dis[y]=dis[x]+1;s1.erase(it);q.push(y); } } }for (int i=1;i<=n;++i) W(dis[i]),write_char('\n');flush(); return 0;}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:CF853B
下一篇:bzoj5142 [Usaco2017 Dec]Haybale Feast
相关文章

 发表评论

暂时没有评论,来抢沙发吧~