[HNOI2002]营业额统计 二叉搜索树的简单入门 splay

题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=1588

思路:搞的方法有很多,splay第一题,代码主要是仿照着别人的写得,通过本题对平衡二叉树的理解有所加深。

code;

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

const int maxn=1000010;
const int INF=0x3f3f3f3f;
int pre[maxn],ch[maxn][2],key[maxn];
int root,tot1;

//debug**
void Treavel(int x)
{
    if(x){
        printf("node:%2d left:%2d right:%2d key:%2d\n",x,ch[x][0],ch[x][1],key[x]);
        Treavel(ch[x][0]);
        Treavel(ch[x][1]);
    }
}
void debug(int x)
{
    printf("root:%2d\n",root);
    Treavel(root);
}
//debug**

void NewNode(int &r,int fa,int k)
{
    r=++tot1;
    pre[r]=fa;
    ch[r][0]=ch[r][1]=0;
    key[r]=k;
}
void init()
{
    root=tot1=0;
    ch[root][0]=ch[root][1]=key[root]=pre[root]=0;
}
void Rotate(int x,int kind)
{
    int y=pre[x];
    ch[y][kind^1]=ch[x][kind];
    pre[ch[x][kind]]=y;
    if(pre[y])  ch[pre[y]][ch[pre[y]][1]==y]=x;
    pre[x]=pre[y];
    ch[x][kind]=y;
    pre[y]=x;
}

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[y][kind]==r){
                Rotate(r,kind^1);
                Rotate(r,kind);
            }
            else{
                Rotate(y,kind);
                Rotate(r,kind);
            }
        }
    }
    if(goal==0) root=r;
}

//插入一个值为k的结点
void Insert(int k)
{
    int r=root;
    if(r==0){
        NewNode(root,0,k);
        return ;
    }
    while(ch[r][key[r]<k])  r=ch[r][key[r]<k];
    NewNode(ch[r][key[r]<k],r,k);
    Splay(ch[r][key[r]<k],0);
}
int Get_Min(int r)
{
    while(ch[r][0]) r=ch[r][0];
    return r;
}
int Get_Max(int r)
{
    while(ch[r][1]) r=ch[r][1];
    return r;
}
int main()
{
    int n;
    init();
    scanf("%d",&n);
    int num,ans=0;
    for(int i=0;i<n;i++){
        if(scanf("%d",&num)==EOF)num=0; //此处不加就wa,输入比较神奇吗?
        Insert(num);
        if(i==0) ans+=num;
        else{
            int tmp=INF;
            if(ch[root][0]) tmp=min(tmp,key[root]-key[Get_Max(ch[root][0])]);
            if(ch[root][1]) tmp=min(tmp,key[Get_Min(ch[root][1])]-key[root]);
            ans+=tmp;
        }
    }
    printf("%d\n",ans);
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值