还是模板题,两颗splay,找点删即可。
#include <iostream>
#include <cstdio>
#include <cstdlib>
#define inf 0x7fffffff
#define P 1000000
using namespace std;
struct SplayNode
{
SplayNode *fa,*ch[];
SplayNode();
int data,size,num;
int chr() {return this==fa->ch[];}
void updata() {size=ch[]->size+ch[]->size+num;}
}*null;
SplayNode::SplayNode() {fa=ch[]=ch[]=null; num=; size=;}
int n,sum;
inline int read() {char c; int ans=; while ((c=getchar())==' ' || c=='\r' || c=='\n'); ans=c-''; while (isdigit(c=getchar())) ans=ans*+c-''; return ans;}
namespace Splay
{
SplayNode *Root[];
void MakeTree()
{
null=new SplayNode;
*null=SplayNode();
Root[]=null;
Root[]=null;
}
void rotate(SplayNode *x,int num)
{
SplayNode *r=x->fa;
if (x==null || r==null) return;
int t=x->chr();
r->ch[t]=x->ch[t^];
r->ch[t]->fa=r;
if (r->fa==null) Root[num]=x;
else r->fa->ch[r->chr()]=x;
x->fa=r->fa;
x->ch[t^]=r;
r->fa=x;
r->updata();
x->updata();
}
void splay(SplayNode *x,SplayNode *r,int num)
{
for (;x->fa!=r;rotate(x,num))
if (x->fa->fa!=r)
if (x->chr()==x->fa->chr()) rotate(x->fa,num);
else rotate(x,num);
}
void insert(int v,int num)
{
SplayNode *r=Root[num];
if (Root[num]==null)
{
Root[num]=new SplayNode;
Root[num]->data=v;
Root[num]->updata();
return;
}
while (r->ch[r->data<v]!=null) r=r->ch[r->data<v];
r->ch[r->data<v]=new SplayNode;
r->ch[r->data<v]->data=v;
r->ch[r->data<v]->fa=r;
splay(r->ch[r->data<v],null,num);
}
SplayNode *find(int v,int num)
{
int lsum=inf,rsum=inf;
SplayNode *r=Root[num],*l=null,*l1=null;
while (r!=null)
{
if (r->data==v)
{
splay(r,null,num);
return r;
}
if (abs(r->data-v)<lsum && r->data<v) lsum=abs(r->data-v),l=r;
if (abs(r->data-v)<rsum && r->data>v) rsum=abs(r->data-v),l1=r;
r=r->ch[r->data<v];
}
if (lsum<=rsum)
{
sum=(sum+lsum)%P;
splay(l,null,num);
return l;
}
else
{
sum=(sum+rsum)%P;
splay(l1,null,num);
return l1;
}
}
void pre(SplayNode *x,SplayNode *&ans)
{
SplayNode *r=x->ch[];
if (r==null) return;
while (r->ch[]!=null) r=r->ch[];
ans=r;
}
void suc(SplayNode *x,SplayNode *&ans)
{
SplayNode *r=x->ch[];
if (r==null) return;
while (r->ch[]!=null) r=r->ch[];
ans=r;
}
void del(int v,int num)
{
SplayNode *r=find(v,num);
SplayNode *q=null,*p=null; pre(Root[num],q); suc(Root[num],p);
if (q==null && p==null)
{
Root[num]=null;
return;
}
if (q==null)
{
splay(p,null,num);
Root[num]->ch[]=null;
Root[num]->updata();
return;
}
if (p==null)
{
splay(q,null,num);
Root[num]->ch[]=null;
Root[num]->updata();
return;
}
splay(q,null,num);
splay(p,q,num);
p->ch[]=null;
p->updata();
}
}
int main()
{
n=read();
Splay::MakeTree();
for (int i=;i<=n;i++)
{
int x,temp;
temp=read(); x=read();
if (Splay::Root[temp^]->size!=)
Splay::del(x,temp^);
else
Splay::insert(x,temp);
sum%=P;
}
printf("%d\n",sum%P);
return ;
}
Description
最近,阿Q开了一间宠物收养所。收养所提供两种服务:收养被主人遗弃的宠物和让新的主人领养这些宠物。每个领养者都希望领养到自己满意的宠物,阿Q根据领养者的要求通过他自己发明的一个特殊的公式,得出该领养者希望领养的宠物的特点值a(a是一个正整数,a<2^31),而他也给每个处在收养所的宠物一个特点值。这样他就能够很方便的处理整个领养宠物的过程了,宠物收养所总是会有两种情况发生:被遗弃的宠物过多或者是想要收养宠物的人太多,而宠物太少。 1. 被遗弃的宠物过多时,假若到来一个领养者,这个领养者希望领养的宠物的特点值为a,那么它将会领养一只目前未被领养的宠物中特点值最接近a的一只宠物。(任何两只宠物的特点值都不可能是相同的,任何两个领养者的希望领养宠物的特点值也不可能是一样的)如果有两只满足要求的宠物,即存在两只宠物他们的特点值分别为a-b和a+b,那么领养者将会领养特点值为a-b的那只宠物。 2. 收养宠物的人过多,假若到来一只被收养的宠物,那么哪个领养者能够领养它呢?能够领养它的领养者,是那个希望被领养宠物的特点值最接近该宠物特点值的领养者,如果该宠物的特点值为a,存在两个领养者他们希望领养宠物的特点值分别为a-b和a+b,那么特点值为a-b的那个领养者将成功领养该宠物。 一个领养者领养了一个特点值为a的宠物,而它本身希望领养的宠物的特点值为b,那么这个领养者的不满意程度为abs(a-b)。【任务描述】你得到了一年当中,领养者和被收养宠物到来收养所的情况,希望你计算所有收养了宠物的领养者的不满意程度的总和。这一年初始时,收养所里面既没有宠物,也没有领养者。
Input
第一行为一个正整数n,n<=80000,表示一年当中来到收养所的宠物和领养者的总数。接下来的n行,按到来时间的先后顺序描述了一年当中来到收养所的宠物和领养者的情况。每行有两个正整数a, b,其中a=0表示宠物,a=1表示领养者,b表示宠物的特点值或是领养者希望领养宠物的特点值。(同一时间呆在收养所中的,要么全是宠物,要么全是领养者,这些宠物和领养者的个数不会超过10000个)
Output
仅有一个正整数,表示一年当中所有收养了宠物的领养者的不满意程度的总和mod 1000000以后的结果。
Sample Input
0 2
0 4
1 3
1 2
1 5
Sample Output
(abs(3-2) + abs(2-4)=3,最后一个领养者没有宠物可以领养)