NOI2004 郁闷的出纳员

include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <string.h>
#include <queue>       //noi2004 伸展树(第几大---转化为第几小)
#define N 100111
using namespace std;
int pre[N], key[N], ch[N][2], root, tot, size[N], add;  //add统一处理,因为它是整个区间改变,所以无需延时标志
//size表示节点的大小,注意,相等的元素要统一分到右边
void update(int x)
{
    size[x]=size[ch[x][0]]+size[ch[x][1]]+1;
}

void rotate(int x, int kind)   //kind为0表示左旋,kind为1表示右旋
{
    int k=pre[x], g;
    ch[k][!kind]=ch[x][kind];
    pre[ch[x][kind]]=k;
    g=pre[k];
   	ch[x][kind]=k;
    pre[x]=pre[k];
    pre[k]=x;
    update(k);
	if(g)ch[g][ch[g][1]==k]=x; //草,原来是这里
     return ;
}

void Splay(int x, int goal)
{
    int k, g, h;
    while(pre[x]!=goal)
    {
        k=pre[x];
        if(pre[k]==goal)
        {
            rotate(x, key[k]>key[x]);
        }
        else
        {
            g=(ch[k][0]==x?0:1);
            h=(ch[pre[k]][0]==k?0:1);
            if(g==h)
            {
                rotate(k, !g);
                rotate(x, !g);
            }
            else
            {
                rotate(x, key[k]>key[x]);
                rotate(x, key[pre[x]]>key[x]);
            }
        }
    }
    if(!goal)root=x;
    update(x);
    return ;
}

void insert(int k)
{
    int r=root, g, h;
    if(!r)
    {
        tot++;
		ch[tot][0]=ch[tot][1]=0;
		key[tot]=k;
		root=tot;
		size[tot]=1;
        return ;
    }
    while(r)
    {
        g=r;
        if(key[r]>k)
            r=ch[r][0];
        else r=ch[r][1];
    }
    tot++;
	ch[g][key[g]<=k]=tot;      //注意,相等的元素要统一分到右边
	pre[tot]=g;
	key[tot]=k;
	ch[tot][0]=ch[tot][1]=0;
	size[tot]=1;
    Splay(tot, 0);
    return ;
}

void Delete(int k) //选择树中小于k的最大key值及其位置
{
    int x = root ;
    int xx = 0 ;
    while(x) {
        if(key[x] < k) {
            xx = x ;
            x = ch[x][1] ;
        } else {
            x = ch[x][0] ;
        }
    }
    if(!xx)return ;
    Splay(xx , 0) ;
    if(ch[xx][1] == 0) {
        root = 0 ;
        return ;
    }
    root = ch[xx][1];
    pre[root] = 0 ;
}
int select(int k, int r)        //返回第几小的元素
{
	if(size[ch[r][0]]+1==k)
		return key[r]+add;
	else if(size[ch[r][0]]+1>k)
		return select(k, ch[r][0]);
	else return select(k-size[ch[r][0]]-1, ch[r][1]);
}
		
		
int main()
{
    int n, k, peo=0, min1;
    char c;
    add=root=tot=0;
   scanf("%d%d", &n, &min1);
    while(n--)
    {
        scanf("\n");
        scanf("%c %d", &c, &k);
        if(c=='I'&&k>=min1)
        {
            insert(k-add);
            peo++;
            continue;
        }
        if(c=='A')
        {
            add+=k; 
            continue;
        }
        if(c=='S')
        {
            add-=k;
            Delete(min1-add);
            continue;
        }
        if(c=='F')
        {
			if(size[root]<k)
			{
				printf("-1\n");
			}
            else printf("%d\n", select(size[root]-k+1, root)); 
        }
    }
    printf("%d\n", peo-size[root]);
	return 0;
}




 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值