首页 > 代码库 > BZOJ 1208: [HNOI2004]宠物收养所
BZOJ 1208: [HNOI2004]宠物收养所
题目
1208: [HNOI2004]宠物收养所
Time Limit: 10 Sec Memory Limit: 162 MBDescription
最近,阿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,最后一个领养者没有宠物可以领养)
HINT
Source
Splay
题解
这道题目就是寻找前驱和后继,有一个小技巧就是在人多的时候就把人变成狗,狗变成人进行操作,这样所有的操作都能统一化了。正在学习SBT,稍微练练手。
代码
1 /*Author:WNJXYK*/ 2 #include<cstdio> 3 using namespace std; 4 5 const int M=1000000; 6 const int Inf=1e9; 7 8 const int Maxn=1000000; 9 struct SBT{ 10 int left; 11 int right; 12 int size; 13 int key; 14 }; 15 SBT tree[Maxn+10]; 16 int root,cnt; 17 18 inline void rotate_l(int &x){ 19 int y=tree[x].right; 20 tree[x].right=tree[y].left; 21 tree[y].left=x; 22 tree[y].size=tree[x].size; 23 tree[x].size=1+tree[tree[x].left].size+tree[tree[x].right].size; 24 x=y; 25 } 26 27 inline void rotate_r(int &x){ 28 int y=tree[x].left; 29 tree[x].left=tree[y].right; 30 tree[y].right=x; 31 tree[y].size=tree[x].size; 32 tree[x].size=tree[tree[x].left].size+1+tree[tree[x].right].size; 33 x=y; 34 } 35 36 void maintain(int &x,bool flag){ 37 //printf("MainTain %d\n",x); 38 if (flag==false){ 39 if (tree[tree[tree[x].left].left].size>tree[tree[x].right].size){ 40 rotate_r(x); 41 } 42 else if (tree[tree[tree[x].left].right].size>tree[tree[x].right].size){ 43 rotate_l(tree[x].left); 44 rotate_r(x); 45 }else return ; 46 }else{ 47 if (tree[tree[tree[x].right].right].size>tree[tree[x].left].size){ 48 rotate_l(x); 49 }else if (tree[tree[tree[x].right].left].size>tree[tree[x].left].size){ 50 rotate_r(tree[x].right); 51 rotate_l(x); 52 }else return ; 53 } 54 maintain(tree[x].left,false); 55 maintain(tree[x].right,true); 56 maintain(x,true); 57 maintain(x,false); 58 } 59 60 void insert(int &x,int sp){ 61 //printf("%d\n",x); 62 if (!x){ 63 x=++cnt; 64 tree[x].left=tree[x].right=0; 65 tree[x].size=1; 66 tree[x].key=sp; 67 }else{ 68 tree[x].size++; 69 if (sp<tree[x].key){ 70 insert(tree[x].left,sp); 71 }else{ 72 insert(tree[x].right,sp); 73 } 74 maintain(x,sp>=tree[x].key); 75 } 76 } 77 78 int del(int &x,int sp){ 79 tree[x].size--; 80 if (sp==tree[x].key || ( sp<tree[x].key && tree[x].left==0) || (sp>tree[x].key && tree[x].right==0)){ 81 int y=tree[x].key; 82 if (tree[x].left==0 ||tree[x].right==0){ 83 x=tree[x].left+tree[x].right; 84 }else{ 85 tree[x].key=del(tree[x].left,tree[x].key+1); 86 } 87 return y; 88 }else{ 89 if (sp<tree[x].key){ 90 return del(tree[x].left,sp); 91 }else{ 92 return del(tree[x].right,sp); 93 } 94 } 95 } 96 97 int pred(int &x,int y,int sp){ 98 if (x==0) return y; 99 if (tree[x].key<sp){100 return pred(tree[x].right,x,sp);101 }102 return pred(tree[x].left,y,sp);103 }104 105 int succ(int &x,int y,int sp){106 if (x==0) return y;107 if (tree[x].key>sp){108 return succ(tree[x].left,x,sp);109 }110 return succ(tree[x].right,y,sp);111 }112 113 inline void init(){114 root=cnt=0;115 }116 117 inline int abs(int x){118 if (x<0) return -x;119 return x;120 }121 122 int main(){123 init();124 int n;scanf("%d",&n);125 int p=0;126 int Ans=0;127 for (;n--;){128 int a,b;129 scanf("%d%d",&a,&b);130 if (a==p || tree[root].size==0){131 p=a;132 insert(root,b);133 }else{134 int f1=pred(root,0,b);135 int f2=succ(root,0,b);136 if (f1!=0) f1=tree[f1].key; else f1=Inf;137 if (f2!=0) f2=tree[f2].key; else f2=Inf;138 if (abs(f1-b)<=abs(f2-b)){139 del(root,f1);140 Ans+=abs(f1-b)%M;141 }else{142 del(root,f2);143 Ans+=abs(f2-b)%M;144 }145 Ans%=M;146 }147 }148 printf("%d\n",Ans);149 return 0;150 }
BZOJ 1208: [HNOI2004]宠物收养所