程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> hdu-2475-Box-splay

hdu-2475-Box-splay

編輯:C++入門知識

伸展樹是那麼的迷人,總是讓你在希望的時候WA,在絕望的時候AC。。。。。

做這個題沒有之前,首先要了解樹形結構轉線性的做法。

 

本題做法:

對於本題的每一個最外層的盒子建立一顆伸展樹。

對於move x y操作:

(1)把x為根的子樹切下來。

(2)然後把切下來的子樹放入y的後面。

對於query x操作:

(1)直接查詢x為根的子樹的最小點就可以了。

 

#include
#include
#include
#include
#include
using namespace std;
#define maxn 110000
#define mem(a,b) memset(a,b,sizeof(a))
#define root10 ch[ch[root][1]][0]
#define root1 ch[root][1]
#define root11 ch[ch[root][1]][1]
#define lson ch[x][0]
#define rson ch[x][1]
int ch[maxn][2];
int pre[maxn];
int root,tot;
int size[maxn];
int val[maxn];
//----------------------
int l[maxn];
int r[maxn];
vectorvec[maxn];
vectorans;
vectortree;
void Treaval(int x)
{
    if(x)
    {
        Treaval(ch[x][0]);
        printf(結點%2d:左兒子 %2d 右兒子 %2d 父結點 %2d size = %2d ,key = %2d 
,x,ch[x][0],ch[x][1],pre[x],size[x],val[x]);
        Treaval(ch[x][1]);
    }
}
void debug()
{
    printf(root:%d
,root);
    Treaval(root);
}
void debug2()
{
    puts(start:);
    for(int x=1;x<=tot;x++)
    {
            printf(結點%2d:左兒子 %2d 右兒子 %2d 父結點 %2d size = %2d ,key = %2d 
,x,ch[x][0],ch[x][1],pre[x],size[x],val[x]);
    }
}
//以上Debug
void push_down(int x)
{
}
void push_up(int x)
{
}
void rot(int x,int kind)
{
    int y=pre[x];
    push_down(y);
    push_down(x);
    ch[y][!kind]=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;
    push_up(y);
    push_up(x);
}
void splay(int x,int goal)
{
    push_down(x);
    while(pre[x]!=goal)
    {
        if(pre[pre[x]]==goal)
        {
            push_down(pre[x]);
            push_down(x);
            rot(x,ch[pre[x]][0]==x);
        }
        else
        {
            int y=pre[x];
            push_down(pre[y]);
            push_down(y);
            push_down(x);
            int kind=ch[pre[y]][0]==y;
            if(ch[y][kind]==x)
            {
                rot(x,!kind);
                rot(x,kind);
            }
            else
            {
                rot(y,kind);
                rot(x,kind);
            }
        }
    }
    push_up(x);
    if(goal==0)root=x;
}

void init()
{
    root=tot=0;
    memset(ch,0,sizeof(ch));
    memset(pre,0,sizeof(pre));
}
void newnode(int &x,int k,int father)
{
    x=++tot;
    pre[x]=father;
    size[x]=1;
    ch[x][0]=ch[x][1]=0;
    val[x]=k;
    if(k<0)r[-k]=x;
    else l[k]=x;
}
void buildtree(int &x,int l,int r,int father)
{
    if(l>r)return;
    int mid=(l+r)/2;
    newnode(x,ans[mid],father);
    buildtree(ch[x][0],l,mid-1,x);
    buildtree(ch[x][1],mid+1,r,x);
    push_up(x);
}
int get_max(int r)
{
    push_down(r);
    while(ch[r][1])
    {
        r=ch[r][1];
        push_down(r);
    }
    return r;
}
int get_min(int r)
{
    push_down(r);
    while(ch[r][0])
    {
        r=ch[r][0];
        push_down(r);
    }
    return r;
}
int query(int x)
{
    int ll=l[x];
    splay(ll,0);
    int y=get_min(ll);
    return val[y];
}
void dos(int a,int b)
{
    int x,y,z;
    x=l[a];y=r[a];z=y;
    splay(x,0);
    splay(y,0);


    int ll,rr,conn;
    ll=ch[x][0];
    rr=ch[y][1];
    conn=get_max(ll);

    pre[ll]=pre[rr]=0;
    ch[x][0]=ch[y][1]=0;
    if(conn!=0)ch[conn][1]=rr;
    pre[rr]=conn;

    if(b==0)return;

    if(query(b)==a)
    {
        ch[conn][1]=0;pre[rr]=0;
        ch[x][0]=ll;ch[y][1]=rr;
        pre[ll]=x;
        pre[rr]=y;
        pre[0]=0;
        return;
    }

    if(rr!=0)splay(rr,0);

    x=l[b];
    splay(x,0);
    y=get_min(ch[x][1]);
    splay(y,x);

    ch[y][0]=z;pre[z]=y;
}
void dfs(int x)
{
    ans.push_back(x);
    for(int i=0; i0)len++;
            else len--;
            if(len==0)
            {
                buildtree(root,st,i,0);
                st=i+1;
            }
        }
        int m,x,y;
        char str[1110];
        scanf(%d,&m);
        while(m--)
        {
            cas++;
            scanf(%s,str);
            if(str[0]=='M')
            {
                scanf(%d%d,&x,&y);
                dos(x,y);
            }
            if(str[0]=='Q')
            {
                scanf(%d,&x);
                printf(%d
,query(x));
            }
        }
    }
    return 0;
}


























 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved