[HNOI2004]宠物收养所 bzoj 1208 splay

16 篇文章 0 订阅
5 篇文章 0 订阅

题目大意

在一堆数字中间找最接近的数

分析

开一棵splay,每次查找前驱后继删掉即可

我一开始delete操作打错了。。。
调了一个晚上。。。
最后抄了标改对了。。。

%%%老伙计

code

#include<iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<string>
#include<algorithm>
#include<stack>
#include<queue>
#include<vector> 
#include<ctime>

using namespace std;  

const int N=1000005;
const int inf=0X7fffffff; 
const int mod=1000000;

struct tree{
    int l,r; int fa,k; int s;
}t[N];  

int n;
int delta,ans;
int root=0,tot;  
long long num=0;

int read() {
    int x=0,v=1; char ch=getchar();
    for (;ch<'0'||ch>'9';v=(ch=='-')?(-1):(v),ch=getchar());
    for (;ch<='9'&&ch>='0';x=x*10+ch-'0',ch=getchar());
    return x*v;
}

void clean(int x)
{
    t[x].l=t[x].r=t[x].fa=t[x].k=t[x].s=0;
}

void rttl(int x)  
{  
    int y=t[x].r;  
    if (x==root) root=y;  
    t[x].r=t[y].l; t[t[y].l].fa=x; t[y].l=x; t[y].fa=t[x].fa;  
    if (x==t[t[x].fa].l) t[t[x].fa].l=y;  
    else t[t[x].fa].r=y;  
    t[x].fa=y; t[x].s=t[t[x].l].s+t[t[x].r].s+1; t[y].s=t[t[y].l].s+t[t[y].r].s+1;  
}  

void rttr(int x)  
{  
    int y=t[x].l;  
    if (x==root) root=y;  
    t[x].l=t[y].r; t[t[y].r].fa=x; t[y].r=x; t[y].fa=t[x].fa;  
    if (x==t[t[x].fa].l) t[t[x].fa].l=y;  
    else t[t[x].fa].r=y;  
    t[x].fa=y; t[x].s=t[t[x].l].s+t[t[x].r].s+1; t[y].s=t[t[y].l].s+t[t[y].r].s+1;  
}  

void splay(int x,int flag)  
{  
    if (x==0) return;
    while (x!=root)  
    {  
        int f=t[x].fa;  
        if (f==x) return;
        if ((flag)&&(f==root)) return;
        if ((flag)&&(t[f].fa==root))
        {
            if (x==t[f].l) rttr(f);  
            else rttl(f); 
            return;
        }
        if (f==root)  
            if (x==t[f].l) rttr(f);  
            else rttl(f);  
        else
        {  
            int p=t[f].fa;  
            if (x==t[f].l)  
            {  
                if (f==t[p].l)  
                {rttr(p); rttr(f);}
                else
                {rttr(f); rttl(p);}  
            }
            else
            {  
                if (f==t[p].l)  
                {rttl(f); rttr(p);}
                else
                {rttl(p); rttl(f);}  
            }  
        } 
    }  
}  

void insert(int k)  
{  
    if (!root)  
    {  
        root=++tot; t[tot].s=1; t[tot].k=k;  
        return;  
    }  
    int x=root,y;  
    while (x)  
    {  
        y=x; t[x].s++;  
        if ((x==t[x].l)||(x==t[x].r)) break;
        if (k<t[x].k) x=t[x].l;  
        else x=t[x].r;  
    }  
    t[++tot].s=1; t[tot].k=k; t[tot].fa=y;  
    if (k<t[y].k) t[y].l=tot;  
    else t[y].r=tot;  
    splay(tot,0);  
}  

int get_pre(int k) 
{
    int x=root;
    int y=0;
    while (x) 
    {
        if (t[x].k<=k) 
        {
            y=x;
            x=t[x].r;
        } 
        else x=t[x].l;
    }
    if (y) splay(y,0);
    return y;
}

int get_nex(int k) 
{
    int x=root;
    int y=0;
    while (x) 
    {
        if (t[x].k>=k) 
        {
            y=x;
            x=t[x].l;
        } else x=t[x].r;
    }
    if (y) splay(y,0);
    return y;
}

void del(int x)
{
    splay(x,0);
    if (t[x].l==0)
    {
        root=t[x].r;
        t[root].fa=0;
        return;
    }
    int xx=t[root].l;
    while (t[xx].r) xx=t[xx].r;
    splay(xx,1);
    t[xx].r=t[root].r;
    t[xx].s=t[root].s-1;
    t[xx].fa=0; t[t[root].r].fa=xx;
    clean(root);
    root=xx;
}

int main()  
{  
    freopen("pet.in","r",stdin);
    freopen("pet.out","w",stdout);
    n=read();
    int kind=0;
    for (int i=1;i<=n;i++)  
    {  
        clean(0);
        int flag,x;
        flag=read(); x=read();  
        if (!t[root].s)
        {kind=flag;}
        if (flag==kind)
        {insert(x);}
        else
        {
            int k1=get_pre(x);
            int k2=get_nex(x);
            if (k2==0)
            {
                k2=k1;
            }
            if (k1==0)
            {
                k1=k2;
            }
            if (abs((x-t[k1].k))<=abs((t[k2].k-x)))
            {
                ans=(ans+abs((x-t[k1].k)))%mod;
                del(k1);
            }
            else
            {
                ans=(ans+abs((t[k2].k-x)))%mod;
                del(k2);
            }
        }
    }  
    printf("%d\n",ans%mod);  
}  
根据引用\[1\]和引用\[2\]的描述,题目中的影魔拥有n个灵魂,每个灵魂有一个战斗力ki。对于任意一对灵魂对i,j (i<j),如果不存在ks (i<s<j)大于ki或者kj,则会为影魔提供p1的攻击力。另一种情况是,如果存在一个位置k,满足ki<c<kj或者kj<c<ki,则会为影魔提供p2的攻击力。其他情况下的灵魂对不会为影魔提供攻击力。 根据引用\[3\]的描述,我们可以从左到右进行枚举。对于情况1,当扫到r\[i\]时,更新l\[i\]的贡献。对于情况2.1,当扫到l\[i\]时,更新区间\[i+1,r\[i\]-1\]的贡献。对于情况2.2,当扫到r\[i\]时,更新区间\[l\[i\]+1,i-1\]的贡献。 因此,对于给定的区间\[l,r\],我们可以根据上述方法计算出区间内所有下标二元组i,j (l<=i<j<=r)的贡献之和。 #### 引用[.reference_title] - *1* *3* [P3722 [AH2017/HNOI2017]影魔(树状数组)](https://blog.csdn.net/li_wen_zhuo/article/details/115446022)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [洛谷3722 AH2017/HNOI2017 影魔 线段树 单调栈](https://blog.csdn.net/forever_shi/article/details/119649910)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值