BZOJ-1208: [HNOI2004]宠物收养所 (splay 查询前驱后继 set也可)

1208: [HNOI2004]宠物收养所

Time Limit: 10 Sec   Memory Limit: 162 MB
Submit: 9707   Solved: 3887
[ Submit][ Status][ Discuss]

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

5
0 2
0 4
1 3
1 2
1 5

Sample Output

3
(abs(3-2) + abs(2-4)=3,最后一个领养者没有宠物可以领养)



#include <bits/stdc++.h>  
using namespace std;  
#define maxn 100005  
#define INF 1 << 31
int pre[maxn], ch[maxn][2], key[maxn], rt, tot;  
void newNode(int& r, int fa, int val){  
    r = ++tot;  
    pre[r] = fa;  
    key[r] = val;  
    ch[r][0] = ch[r][1] = 0;  
}  
void rotate(int r, int kind){  
    int y = pre[r];  
    ch[y][!kind] = ch[r][kind];  
    pre[ch[r][kind]] = y;  
    if(pre[y]){  
        ch[pre[y]][ch[pre[y]][1] == y] = r;  
    }  
    ch[r][kind] = y;  
    pre[r] = pre[y];  
    pre[y] = r;  
}  
void splay(int r, int goal){  
    while(pre[r] != goal){  
        if(pre[pre[r]] == goal){  
            rotate(r, ch[pre[r]][0] == r);  
        }  
        else{  
            int y = pre[r];  
            int kind = ch[pre[y]][0] == y;  
            if(ch[pre[r]][!kind] == r){  
                rotate(y, kind);  
                rotate(r, kind);  
            }  
            else{  
                rotate(r, !kind);  
                rotate(r, kind);  
            }  
        }  
    }  
    if(goal == 0) rt = r;  
}  
int insert(int val){  
    int r = rt;  
    while(1){  
        if(val < key[r]){  
            if(ch[r][0]) r = ch[r][0];  
            else break;  
        }  
        else if(val > key[r]){  
            if(ch[r][1]) r = ch[r][1];  
            else break;  
        }  
        else{
        	splay(r, 0);
        	return 0;
        }  
    }  
    newNode(ch[r][val > key[r]], r, val);  
    splay(ch[r][val > key[r]], 0);  
    return 1;  
}  
int getmin(int val){  
    int r = rt;  
    if(ch[r][0] == 0) return 0;  
    r = ch[r][0];  
    while(ch[r][1]) r = ch[r][1];  
    return key[r];  
}  
int getmax(int val){  
    int r = rt;  
    r = ch[r][1];  
    if(r == 0) return INF;  
    while(ch[r][0]) r = ch[r][0];  
    return key[r];  
} 
void findnode(int x){
	int r = rt;
	while(key[r] != x){
		if(x < key[r]) r = ch[r][0];
		else r = ch[r][1];
	}
	splay(r, 0);
}
void remove(){
	if(!rt) return;
	int y;
	if(ch[rt][1] == 0){
		rt = ch[rt][0];
	}
	else{
		y = ch[rt][1];
		while(ch[y][0]){
			y = ch[y][0];
		}
		splay(y, rt);
		ch[y][0] = ch[rt][0];
		pre[ch[rt][0]] = y;
		rt = y;
	}
	pre[rt] = 0;
} 
int main(){  
    int n, x, op, cur, cnt;  
    scanf("%d", &n);  
    long long ans = 0;  
    rt = tot = 0;  
    for(int i = 1; i <= n; ++i){  
    	ans %= 1000000;
        scanf("%d %d", &op, &x);  
        if(rt == 0){  
            newNode(rt, 0, x);  
            cur = op;
            cnt = 1;
        }  
        else{  
        	if(cnt == 0){
        		cnt += insert(x);
        		cur = op;
        	}
        	else if(op == cur){
        		cnt += insert(x);
        	}
            else if(insert(x) == 0){  
            	cnt--;
            	remove();
                continue;  
            }  
            else{  
                int l = getmin(x);  
                int r = getmax(x); 
                remove();
                if(l == 0){
                	ans += r - x;
                	remove();
                }
                else if(r == INF){
                	ans += x - l;
                	findnode(l);
                	remove();
                }
                else{
                	if(x - l > r - x){
                		ans += r - x;
                		findnode(r);
	                	remove();
                	}
                	else{
                		ans += x - l;
                		findnode(l);
	                	remove();
                	}
                }
                cnt--;
            }  
        }  
    }  
    ans %= 1000000;
    cout << ans << endl;
} 

/* 
题意:4e4天,每天有一个营业额,找到当天之前营业额与当天营业额差值最小的一天,然后累加这个差值。 
 
思路: 
这题可以用set来维护前缀,然后用lowerbound和upperbound来找。作为splay的模板题也是不错的。 
注意第一天差值就是第一天的营业额。后面如果插入的值已经存在,就不能重复插入,然后找前驱和后继, 
简单的在splay上dfs即可。 
*/ 


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值