当前位置 : 主页 > 编程语言 > c++ >

P3377 【模板】左偏树(可并堆)

来源:互联网 收集:自由互联 发布时间:2021-06-23
因为路径压缩的原因 pop出根的时候记得要将根的父亲连向合并后新树的根 #includebits/stdc++.h using namespace std; #define rep(i,a,b) for(int i=(a);i=(b);i++) #define repp(i,a,b) for(int i=(a);i=(b);--i) #define ll

 

 

 

 

 

  

 

因为路径压缩的原因  pop出根的时候记得要将根的父亲连向合并后新树的根

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define repp(i,a,b) for(int i=(a);i>=(b);--i)
#define ll long long
#define see(x) (cerr<<(#x)<<‘=‘<<(x)<<endl)
#define pb push_back
#define inf 0x3f3f3f3f
#define CLR(A,v)  memset(A,v,sizeof A)
typedef pair<int,int>pii;
//////////////////////////////////
const int N=2e6+10;

int val[N],lson[N],rson[N],f[N],dis[N];

int find1(int x){return f[x]==x?x:f[x]=find1(f[x]);};

int Merge(int x,int y)
{
    if(!x||!y)return x+y;
    if(val[x]>val[y]||val[x]==val[y]&&x>y)swap(x,y);
    rson[x]=Merge(rson[x],y);
    if(dis[lson[x]]<dis[rson[x]])swap(lson[x],rson[x]);
    f[lson[x]]=f[rson[x]]=f[x]=x;
    dis[x]=dis[lson[x]]+1;
    return x;
}
void pop(int x){val[x]=-1;f[lson[x]]=lson[x];f[rson[x]]=rson[x];f[x]=Merge(lson[x],rson[x]);}

int n,m,a,b,c;
int main()
{
    cin>>n>>m;
    dis[0]=-1;
    rep(i,1,n)scanf("%d",&val[i]),f[i]=i;

    rep(i,1,m)
    {
        cin>>a>>b;
        if(a==1)
        {
            cin>>c;
            if(val[b]==-1||val[c]==-1)continue;
            int x=find1(b),y=find1(c);
            if(x!=y)f[x]=f[y]=Merge(x,y);
        }
        else
        {
            if(val[b]==-1)printf("-1\n");
            else printf("%d\n",val[find1(b)]),pop(find1(b));
        }
    }
    return 0;
}
View Code
网友评论