BZOJ2733: 永无乡 题解

考虑线段树合并,初始的时候对每个点建一棵动态开点线段树,merge两棵线段树的时候只要像这样操作:

  • 如果root1和root2中有一个为0,则直接返回另一个
  • 递归的调用merge处理左子树和右子树

下面简证这样的复杂度是 O(nlogn) O ( n l o g n )
刚开始每棵线段树中只有一个元素,所以每棵线段树只有 logn l o g n 个节点,所以刚开始的总结点数是 nlogn n l o g n 级别的
考虑每调用一次merge,一定是两棵线段树中存在一个相同的节点,合并之后将会少一个节点,也就是说,每调用一次merge就会删除一次节点,刚开始只有 nlogn n l o g n 个节点,所以merge只会被调用 nlogn n l o g n 次,merge函数里面的复杂度是 O(1) O ( 1 ) ,所以所有的merge的复杂度是 O(nlogn) O ( n l o g n )

注意这道题不要用cin!会疯狂tle…

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <cstdlib>
#include <utility> 
#include <cctype>
#include <algorithm>
#include <bitset>
#include <set>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <cmath>
#define LL long long
#define LB long double
#define x first
#define y second
#define Pair pair<int,int>
#define pb push_back
#define pf push_front
#define mp make_pair
#define LOWBIT(x) x & (-x)
using namespace std;

const int MOD=998244353;
const LL LINF=2e16;
const int INF=2e9;
const int magic=348;
const double eps=1e-10;
const long double pi=acos(-1);
const int G=3;

inline int getint()
{
    char ch;int res;bool f;
    while (!isdigit(ch=getchar()) && ch!='-') {}
    if (ch=='-') f=false,res=0; else f=true,res=ch-'0';
    while (isdigit(ch=getchar())) res=res*10+ch-'0';
    return f?res:-res;
}

inline char GetChar()
{
    char ch;
    while (!isalpha(ch=getchar())) {}
    return ch;
}

int n,m,q;

namespace DSU
{
    int pre[100048];
    inline void init() {for (register int i=1;i<=n+10;i++) pre[i]=i;}
    inline int find_anc(int x) {if (pre[x]!=x) pre[x]=find_anc(pre[x]);return pre[x];}
    inline void update(int x,int y) {x=find_anc(x);y=find_anc(y);pre[y]=x;}
}

int a[100048];

int toind[100048];

int root[100048],tot=0;
struct node
{
    int left,right;
    int sz;
    inline void init() {left=right=0;sz=0;}
}tree[7000048];

inline void pushup(int cur) {tree[cur].sz=(tree[tree[cur].left].sz+tree[tree[cur].right].sz);}

inline void Insert(int &cur,int pos,int l,int r)
{
    if (!cur) cur=++tot,tree[cur].init();
    if (l==r) {tree[cur].sz=1;return;}
    int mid=(l+r)/2;
    if (pos<=mid) Insert(tree[cur].left,pos,l,mid); else Insert(tree[cur].right,pos,mid+1,r);
    pushup(cur);
}

inline int merge(int root1,int root2)
{
    if (!root1 || !root2) return root1+root2;
    tree[root1].left=merge(tree[root1].left,tree[root2].left);
    tree[root1].right=merge(tree[root1].right,tree[root2].right);
    pushup(root1);return root1;
}

inline int query(int cur,int key,int l,int r)
{
    if (tree[cur].sz<key) return -1;
    if (l==r) return toind[l];
    int mid=(l+r)/2;
    if (tree[cur].left==-1) return query(tree[cur].right,key,mid+1,r);
    int ss=tree[tree[cur].left].sz;
    if (ss>=key) return query(tree[cur].left,key,l,mid); else return query(tree[cur].right,key-ss,mid+1,r);
}

int main ()
{
    int i,x,y;char type;n=getint();m=getint();
    tot=0;memset(root,0,sizeof(root));
    for (i=1;i<=n;i++) a[i]=getint(),toind[a[i]]=i;
    for (i=1;i<=n;i++) Insert(root[i],a[i],1,n);
    DSU::init();
    for (i=1;i<=m;i++)
    {
        x=getint();y=getint();
        x=DSU::find_anc(x);y=DSU::find_anc(y);
        if (x==y) continue;
        merge(root[x],root[y]);
        DSU::update(x,y);
    }
    q=getint();
    while (q--)
    {
        type=GetChar();x=getint();y=getint();
        if (type=='B')
        {
            x=DSU::find_anc(x);y=DSU::find_anc(y);
            if (x==y) continue;
            root[x]=merge(root[x],root[y]);
            DSU::update(x,y);
        }
        else
        {
            x=DSU::find_anc(x);
            printf("%d\n",query(root[x],y,1,n));
        }
    }
    return 0;
}


看到这样的合并类问题可以考虑启发式合并
刚开始对于每个点建一棵平衡树,在merge两棵平衡树的时候,只要将size较小的平衡树暴力拆散,再一个一个插进大平衡树即可
总复杂度 O(nlog2n) O ( n l o g 2 n )

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <cstdlib>
#include <utility> 
#include <cctype>
#include <algorithm>
#include <bitset>
#include <set>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <cmath>
#define LL long long
#define LB long double
#define x first
#define y second
#define Pair pair<int,int>
#define pb push_back
#define pf push_front
#define mp make_pair
#define LOWBIT(x) x & (-x)
using namespace std;

const int MOD=998244353;
const LL LINF=2e16;
const int INF=2e9;
const int magic=348;
const double eps=1e-10;
const long double pi=acos(-1);
const int G=3;

inline int getint()
{
    char ch;int res;bool f;
    while (!isdigit(ch=getchar()) && ch!='-') {}
    if (ch=='-') f=false,res=0; else f=true,res=ch-'0';
    while (isdigit(ch=getchar())) res=res*10+ch-'0';
    return f?res:-res;
}

inline char GetChar()
{
    char ch;
    while (!isalpha(ch=getchar())) {}
    return ch;
}

int n,m,q;
int a[100048],root[100048];
int toind[100048];

namespace DSU
{
    int pre[100048],rnk[100048];
    inline void init() {for (register int i=1;i<=n+10;i++) pre[i]=i,rnk[i]=1;}
    inline int find_anc(int x) {if (pre[x]!=x) pre[x]=find_anc(pre[x]);return pre[x];}
    inline void update(int x,int y) {x=find_anc(x);y=find_anc(y);pre[y]=x;rnk[x]+=rnk[y];}
}

namespace Treap
{
    struct Treap
    {
        int left,right,sz;
        int val,priority;
    }tree[5000048];int tot=0;
    inline void update(int cur) {tree[cur].sz=1+tree[tree[cur].left].sz+tree[tree[cur].right].sz;}
    inline int Create(int val,int priority,int left,int right)
    {
        tree[++tot]=Treap{left,right,1,val,priority};
        update(tot);return tot;
    }
    inline void init() {tree[0].sz=0;}
    inline void print(int root)
    {
        if (tree[root].left) print(tree[root].left);
        printf("%d ",tree[root].val);
        if (tree[root].right) print(tree[root].right);
    }
    inline Pair split1(int root,int key)
    {
        if (!root) return mp(0,0);
        if (tree[tree[root].left].sz+1>key)
        {
            Pair splitted=split1(tree[root].left,key);
            tree[root].left=splitted.y;
            update(root);return mp(splitted.x,root);
        }
        else
        {
            Pair splitted=split1(tree[root].right,key-tree[tree[root].left].sz-1);
            tree[root].right=splitted.x;
            update(root);return mp(root,splitted.y);
        }
    }
    inline Pair split2(int root,int key)
    {
        if (!root) return mp(0,0);
        if (tree[root].val>key)
        {
            Pair splitted=split2(tree[root].left,key);
            tree[root].left=splitted.y;
            update(root);return mp(splitted.x,root);
        }
        else
        {
            Pair splitted=split2(tree[root].right,key);
            tree[root].right=splitted.x;
            update(root);return mp(root,splitted.y);
        }
    }
    inline int merge(int root1,int root2)
    {
        if (!root1 || !root2) return root1+root2;
        if (tree[root1].priority<tree[root2].priority)
        {
            tree[root1].right=merge(tree[root1].right,root2);
            update(root1);return root1;
        }
        else
        {
            tree[root2].left=merge(root1,tree[root2].left);
            update(root2);return root2;
        }
    }
    inline void treap_insert(int ind,int val)
    {
        Pair splitted=split2(root[ind],val);
        root[ind]=merge(merge(splitted.x,Create(val,rand(),0,0)),splitted.y);
    }
    inline void Insert(int ind1,int ind2)
    {
        int rt=root[ind2];
        treap_insert(ind1,tree[rt].val);
        if (tree[rt].left) Insert(ind1,tree[rt].left);
        if (tree[rt].right) Insert(ind1,tree[rt].right);
    }
    inline int treap_query(int ind,int key)
    {
        if (tree[root[ind]].sz<key) return -1;
        int &rt=root[ind];
        Pair splitted=split1(rt,key-1);Pair splitted2=split1(splitted.y,1);
        int res=toind[tree[splitted2.x].val];
        rt=merge(merge(splitted.x,splitted2.x),splitted2.y);
        return res;
    }
}


int main ()
{
    int i,x,y;char type;
    n=getint();m=getint();
    memset(root,0,sizeof(root));Treap::init();
    for (i=1;i<=n;i++) a[i]=getint(),toind[a[i]]=i,Treap::treap_insert(i,a[i]);
    DSU::init();
    while (m--)
    {
        x=getint();y=getint();
        x=DSU::find_anc(x);y=DSU::find_anc(y);
        if (x==y) continue;
        if (DSU::rnk[x]<DSU::rnk[y]) swap(x,y);
        Treap::Insert(x,y);DSU::update(x,y);
    }
    q=getint();
    while (q--)
    {
        type=GetChar();x=getint();y=getint();
        if (type=='B')
        {
            x=DSU::find_anc(x);y=DSU::find_anc(y);
            if (x==y) continue;
            if (DSU::rnk[x]<DSU::rnk[y]) swap(x,y);
            Treap::Insert(x,y);DSU::update(x,y);
        }
        else
        {
            x=DSU::find_anc(x);
            printf("%d\n",Treap::treap_query(x,y));
        }
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值