题解:

原来动态开点平衡树是O(n)空间的。。

只需要在split的查找和出来之后动态开点就可以了

这题的结论是2^(b[a[i]+1]>b[a[i+1]+1]的个数)

前60分是普通的平衡树操作完之后再算

满分是动态开点平衡树

对于一个点内部的统计一下,边界上的特判一下

#include <bits/stdc++.h>
using namespace std;
#define rint register int
#define IL inline
#define rep(i,h,t) for (int i=h;i<=t;i++)
#define dep(i,t,h) for (int i=t;i>=h;i--)
#define me(x) memset(x,0,sizeof(x))
#define ll long long
#define mid ((h+t)>>1)
#define mep(x,y) memcpy(x,y,sizeof(y))
namespace IO
{
char ss[<<],*A=ss,*B=ss;
IL char gc()
{
return A==B&&(B=(A=ss)+fread(ss,,<<,stdin),A==B)?EOF:*A++;
}
template<class T>void read(T &x)
{
rint f=,c;while (c=gc(),c<||c>) if (c=='-') f=-; x=(c^);
while (c=gc(),c>&&c<) x=(x<<)+(x<<)+(c^); x*=f;
}
char sr[<<],z[]; int C=-,Z;
template<class T>void wer(T x)
{
if (x<) sr[++C]='-',x=-x;
while (z[++Z]=x%+,x/=);
while (sr[++C]=z[Z],--Z);
}
IL void wer1() {sr[++C]=' ';}
IL void wer2() {sr[++C]='\n';}
template<class T>IL void maxa(T &x,T y) { if (x<y) x=y;}
template<class T>IL void mina(T &x,T y) { if (x>y) x=y;}
template<class T>IL T MAX(T x,T y){ return x>y?x:y;}
template<class T>IL T MIN(T x,T y){ return x<y?x:y;}
}
using namespace IO;
const int N=9e5;
int a[N],b[N],xl[N],cnt,dy[N],d[N],tmp;
const int mo=1e9+;
struct re{
int a,b,kk,d;
}c[N],f[N],p[N],c1[N];
int nq;
struct phs{
int fa[N],rs[N],ls[N],num[N],o[N],v[N],cnt,cnt3;
bool rev[N],t[N];
IL void updata(int x)
{
num[x]=num[ls[x]]+num[rs[x]]+o[x];
}
IL void down(int x)
{
if (rev[x])
{
swap(ls[ls[x]],rs[ls[x]]);
swap(ls[rs[x]],rs[rs[x]]);
rev[ls[x]]^=; rev[rs[x]]^=;
t[ls[x]]^=; t[rs[x]]^=;
rev[x]=;
}
}
void rotate(int x,int y)
{
int f1=fa[x];
if (y==)
{
rs[f1]=ls[x];
if (ls[x]) fa[ls[x]]=f1;
} else
{
ls[f1]=rs[x];
if (rs[x]) fa[rs[x]]=f1;
}
fa[x]=fa[f1];
if (fa[f1])
{
if (ls[fa[f1]]==f1) ls[fa[f1]]=x; else rs[fa[f1]]=x;
}
fa[f1]=x;
if (y==) ls[x]=f1; else rs[x]=f1;
updata(f1); updata(x);
}
void dfs(int x)
{
if (fa[x]) dfs(fa[x]);
down(x);
}
IL void splay(int x,int y)
{
dfs(x);
int f1=fa[x];
while (f1!=y)
{
if (fa[f1]==y)
if (ls[f1]==x) rotate(x,); else rotate(x,);
else
if (ls[fa[f1]]==f1)
if (ls[f1]==x) rotate(f1,),rotate(x,);
else rotate(x,),rotate(x,);
else if (rs[f1]==x) rotate(f1,),rotate(x,);
else rotate(x,),rotate(x,);
f1=fa[x];
}
}
IL int sc(int x,int y)
{
if (t[x])
{
o[++nq]=y; num[nq]=y; fa[nq]=x; v[nq]=v[x];
ls[nq]=ls[x]; o[x]-=y;
v[x]+=y; ls[x]=nq; t[nq]=t[x];
} else
{
o[++nq]=y; num[nq]=y; fa[nq]=x; v[nq]=v[x]+o[x]-y;
ls[nq]=ls[x]; o[x]-=y;
ls[x]=nq; t[nq]=t[x];
}
if (ls[nq]) fa[ls[nq]]=nq;
num[nq]+=num[ls[nq]];
return nq;
}
IL int search(int y)
{
splay(,);
int x=;
while ()
{
down(x);
if (num[ls[x]]+o[x]>=y&&num[ls[x]]<y)
{
if (num[ls[x]]+o[x]==y) return(x);
return sc(x,y-num[ls[x]]);
}
if (num[ls[x]]+o[x]>y) x=ls[x];
else y-=num[ls[x]]+o[x],x=rs[x];
}
}
IL int split(int x,int y)
{
int k1=search(x),k2=search(y+);
splay(k1,);
splay(k2,k1);
if (o[k2]!=)
sc(k2,o[k2]-);
return ls[k2];
}
IL void reverse(int x,int y)
{
int k=split(x,y);
rev[k]^=; swap(ls[k],rs[k]); t[k]^=;
}
IL void change(int x,int y)
{
int k=split(x,y);;
int now=fa[k];
ls[now]=; fa[k]=; splay(now,);
now=search();
splay(now,); down(now); down();
rs[]=k; fa[k]=; splay(k,);
}
void dfs2(int x)
{
down(x);
if (ls[x]) dfs2(ls[x]);
// a[++cnt]=v[x];
c[++cnt]=(re){v[x],o[x],t[x],cnt3+};
cnt3+=o[x];
if (rs[x]) dfs2(rs[x]);
}
}S;
bool cmp(re x,re y)
{
return x.a<y.a;
}
IL int pos(int x)
{
if (x>tmp) return();
int h=,t=S.cnt-;
while (h<t)
{
if (f[mid].a+f[mid].b->=x) t=mid;
else h=mid+;
}
if (f[h].kk) return f[h].d+x-f[h].a;
else return f[h].d+f[h].b--(x-f[h].a);
}
IL int pos2(int x)
{
if (c[x].kk) return c[x].a;
else return c[x].a+c[x].b-;
}
IL int fsp(ll x,int y)
{
ll ans=;
while (y)
{
if (y&) ans=ans*x%mo;
x=x*x%mo; y>>=;
}
return ans;
}
int main()
{
freopen("1.in","r",stdin);
freopen("1.out","w",stdout);
int n,m;
read(n); read(m);
tmp=n;
int cnt=;
nq=;
S.rs[]=; S.rs[]=; S.fa[]=; S.fa[]=; S.t[]=;
S.o[]=; S.v[]=; S.o[]=n; S.v[]=; S.o[]=; S.v[]=n+;
S.splay(,);
rep(i,,m)
{
int kk,x,y;
read(kk); read(x); read(y);
if (kk==) S.change(x,y);
else S.reverse(x,y);
}
S.splay(,);
S.dfs2();
int l=S.cnt;
rep(i,,l-) f[i]=c[i+];
sort(f+,f+l-+,cmp);
cnt=;
rep(i,,l-)
{
if (c[i].b>=) cnt+=c[i].b-;
if (c[i].kk)
{
if (c[i].b>=&&i!=(l-))
{
int k1=c[i].a+c[i].b-,k2=pos2(i+);
if (pos(k1+)<pos(k2+)) cnt++;
}
if (c[i].b>=)
{
int k1=c[i].a+c[i].b-,k2=c[i].a+c[i].b-;
if (pos(k1+)<pos(k2+)) cnt++;
}
} else
{
if (c[i].b>=&&i!=(l-))
{
int k1=c[i].a,k2=pos2(i+);
if (pos(k1+)<pos(k2+)) cnt++;
}
if (c[i].b>=)
{
int k1=c[i].a+c[i].b-,k2=c[i].a+c[i].b-;
if (pos(k1+)<pos(k2+)) cnt++;
}
}
}
cout<<fsp(,cnt)<<endl;
return ;
}

Very Long Suffix Array的更多相关文章

  1. 后缀数组(suffix array)详解

    写在前面 在字符串处理当中,后缀树和后缀数组都是非常有力的工具. 其中后缀树大家了解得比较多,关于后缀数组则很少见于国内的资料. 其实后缀数组是后缀树的一个非常精巧的替代品,它比后缀树容易编程实现, ...

  2. 后缀数组(suffix array)

    参考: Suffix array - Wiki 后缀数组(suffix array)详解 6.3   Suffix Arrays - 算法红宝书 Suffix Array 后缀数组 基本概念 应用:字 ...

  3. Suffix array

    A suffix array is a sorted array of all suffixes of a given string. The definition is similar to Suf ...

  4. 利用后缀数组(suffix array)求最长公共子串(longest common substring)

    摘要:本文讨论了最长公共子串的的相关算法的时间复杂度,然后在后缀数组的基础上提出了一个时间复杂度为o(n^2*logn),空间复杂度为o(n)的算法.该算法虽然不及动态规划和后缀树算法的复杂度低,但其 ...

  5. 笔试算法题(40):后缀数组 & 后缀树(Suffix Array & Suffix Tree)

    议题:后缀数组(Suffix Array) 分析: 后缀树和后缀数组都是处理字符串的有效工具,前者较为常见,但后者更容易编程实现,空间耗用更少:后缀数组可用于解决最长公共子串问题,多模式匹配问题,最长 ...

  6. 数据结构之后缀数组suffix array

    在字符串处理当中,后缀树和后缀数组都是非常有力的工具,其中后缀树大家了解得比较多,关于后缀数组则很少见于国内的资料.其实后缀是后缀树的一个非常精巧的替代品,它比后缀树容易编程实现,能够实现后缀树的很多 ...

  7. suffix array后缀数组

    倍增算法 基本定义子串:字符串 S 的子串 r[i..j],i≤j,表示 r 串中从 i 到 j 这一段也就是顺次排列 r[i],r[i+1],...,r[j]形成的字符串. 后缀:后缀是指从某个位置 ...

  8. 后缀数组suffix array

    倍增算法,时间复杂度O(nlogn) sa从小到大保存相对大小的下标 理解LSD,x数组,sa数组 char s[maxn]; int sa[maxn],t[maxn],t2[maxn],c[maxn ...

  9. 后缀数组 (Suffix Array) 学习笔记

    \(\\\) 定义 介绍一些写法和数组的含义,首先要知道 字典序 . \(len\):字符串长度 \(s\):字符串数组,我们的字符串存储在 \(s[0]...s[len-1]\) 中. \(suff ...

随机推荐

  1. 20165223 《信息安全系统设计基础》 stat命令的实现-mysate

    学习使用stat(1),并用C语言实现                1. 提交学习 stat(1) 的截图                2. man -k ,grep -r的使用          ...

  2. css:a:visited限制

    :active 对于:active伪类可以在div上生效.没有限制 :visited使用限制 :visited只适用于带href的a标签.如果给a标签绑定了click事件,那跳转的url必须跟href ...

  3. Inheritance: 'A' is an inaccessible base of 'B'

    'boost::enable_shared_from_this<net::Session>' is an inaccessible base of 'net::Session' BOOST ...

  4. 洛谷 P5304 [GXOI/GZOI2019]旅行者(最短路)

    洛谷:传送门 bzoj:传送门 参考资料: [1]:https://xht37.blog.luogu.org/p5304-gxoigzoi2019-lv-xing-zhe [2]:http://www ...

  5. linux expect 即exp脚本交互功能【原】

    场景 expect命令用于任何自动化互动的过程. send – 发送字符串到进程 expect – 等待来自进程的特定的字符串 spawn – 启动命令 安装 expect一开始100%不存在, 手动 ...

  6. 源码-mybatis-01-SqlSessionFactory创建

    0.总概   1.SqlSessionFactory在mybatis只要创建一次: import com.suntek.vdm.gw.util.AESEncipher; import org.apac ...

  7. Linux忘记root密码 单用户模式 及启动加密

    单用户模式: 在系统启动引导读秒时,按任意键进入系统选项 再按  e  键   选择第二项  按 e  进入编辑  输入  空格  1 然后回车  再按B  键 不需要密码即可进入系统 再passwd ...

  8. 课程设计个人报告——基于ARM实验箱的捕鱼游戏的设计与实现

    课程设计个人报告--基于ARM实验箱的捕鱼游戏的设计与实现 一.个人贡献 参与课设题目讨论及部分过程 资料收集 负责代码调试 捕鱼游戏相应功能的实现 实验环境 Eclipse软件开发环境: ARM实验 ...

  9. 电脑右键新建excel工作表,但是扩展名是.xls,而不是.xlsx

    怀疑是因为之前安装了wps,然后又卸载了,导致的.上网查阅,如下: excel默认新建xls 不是我的问题 Excel 2010/2013/2016在鼠标右键新建xls或xlsx文件后,打开报错“无法 ...

  10. 转化.vdi到.vmdk

    OracleVirtualBox转化.vdi到.vmdk E:\Genymotion-deployed\CentOS_7_64>"D:/Program Files/Oracle/Vir ...