题解P3391 文艺平衡树

Posted Rye_Catcher

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解P3391 文艺平衡树相关的知识,希望对你有一定的参考价值。

用pb_ds库中的rope水过去的,忽然发现这玩意能水好多模拟题。

详见这个博客:背景的小姐姐真的好看

  • 声明
 #include <ext/rope>
 using namespace __gnu_cxx;
  • 使用
rope<类型>a
a.size()
a.length()
a.substr(pos,x)从pos开始提取x个
a.push_back(x);
a.insert(pos,x);在pos插入x,自然支持整个char数组的一次插入
a.erase(pos,x);从pos开始删除x个
a.copy(pos,len,x);从pos开始到pos+len为止用x代替
a.replace(pos,x);从pos开始换成x

访问可直接用数组下标,非常方便


#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <ext/rope>
#include <iostream>
using namespace std;
using namespace __gnu_cxx;
int read()
{
	int x=0;char ch;short int neg=0;ch=getchar();
	while(!isdigit(ch)){
		neg|=(ch==\'-\');ch=getchar();
	}
	while(isdigit(ch)){
		x=x*10+ch-48;ch=getchar();
	}
	return neg?-x:x;
}
int n,m;
int l,r;
rope<int>a,b,tmp;
int main()
{
  int len;
  cin>>n>>m;
  for(int i=0;i<n;i++)
  {
  	a.push_back(i+1);b.push_back(n-i);//a[i]=i;b[i]=n-i+1;
  }
  while(m--)
  {
    l=read();r=read();
    l--,r--;
    int x=r-l+1;
    tmp=a.substr(l,r-l+1);
    a=a.substr(0,l)+b.substr(n-r-1,r-l+1)+a.substr(r+1,n-r-1);
    b=b.substr(0,n-r-1)+tmp+b.substr(n-l,l);
  }
  for(register int i=0;i<n;i++)cout<<a[i]<<\' \';
  return 0;
}

以上是关于题解P3391 文艺平衡树的主要内容,如果未能解决你的问题,请参考以下文章

P3391 模板文艺平衡树(Splay)

P3391 模板文艺平衡树(Splay)新板子

[luogu P3391] 文艺平衡树

luogu P3391 文艺平衡树

AC日记——文艺平衡树 洛谷 P3391

P3391 模板文艺平衡树(Splay)