题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2555

建立后缀自动机,就可以直接加入新串了;

出现次数就是 Right 集合的大小,需要查询 Parent 树上的子树和;

所以可以用 LCT 维护 Parent 树,因为 Parent 树是有根树所以不需要 makeroot;

代码中的两种 cut 写法都可以,其实这里的 splay 节点上记的 siz 值不是 splay 子树里的而是原子树( Parent 树上)里的;

注意读入的函数内不改变 mask -_-

splay 用栈时不要改变 x !

代码如下:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int const xn=,xm=3e6+;
int fa[xn],lst=,cnt=,l[xn],go[xn][],siz[xn];
int pre[xn],c[xn][],sta[xn],top,lzy[xn],mask;
char dc[],s[xm];
void turn(int x,int w){siz[x]+=w; lzy[x]+=w;}//
bool isroot(int x){return c[pre[x]][]!=x&&c[pre[x]][]!=x;}
void pushdown(int x)
{
if(!lzy[x])return;
int ls=c[x][],rs=c[x][];
turn(ls,lzy[x]); turn(rs,lzy[x]);
lzy[x]=;
}
void rotate(int x)
{
int y=pre[x],z=pre[y],d=(c[y][]==x);
if(!isroot(y))c[z][c[z][]==y]=x;
pre[x]=z; pre[y]=x; pre[c[x][!d]]=y;
c[y][d]=c[x][!d]; c[x][!d]=y;
}
void splay(int x)
{
sta[top=]=x;
//while(!isroot(x))sta[++top]=pre[x],x=pre[x];//don't change x!!
for(int i=x;!isroot(i);i=pre[i])sta[++top]=pre[i];
while(top)pushdown(sta[top--]); while(!isroot(x))
{
int y=pre[x],z=pre[y];
if(!isroot(y))
{
if((c[y][]==x)^(c[z][]==y))rotate(x);
else rotate(y);
}
rotate(x);
}
}
void access(int x)
{
for(int t=;x;c[x][]=t,t=x,x=pre[x])splay(x);
}
void link(int x,int f)
{
pre[x]=f; access(f); splay(f); turn(f,siz[x]);//line to root
}
void Cut(int x)
{
access(x); splay(x); turn(c[x][],-siz[x]); pre[c[x][]]=; c[x][]=;//c[x][0]:parent
}
void cut(int x)//
{
access(x); int y=fa[x]; splay(y);//
turn(y,-siz[x]); fa[x]=; c[y][]=;
}
void add(int w)
{
int p=lst,np=++cnt; lst=np; l[np]=l[p]+; siz[np]=;
for(;p&&!go[p][w];p=fa[p])go[p][w]=np;
if(!p)fa[np]=,link(np,);
else
{
int q=go[p][w];
if(l[q]==l[p]+)fa[np]=q,link(np,q);
else
{
int nq=++cnt; l[nq]=l[p]+;
memcpy(go[nq],go[q],sizeof go[q]);
fa[nq]=fa[q]; link(nq,fa[q]);
fa[np]=nq; link(np,nq);
cut(q); fa[q]=nq; link(q,nq);
for(;go[p][w]==q;p=fa[p])go[p][w]=nq;
}
}
}
int query(int l)
{
int p=;//
for(int i=;i<l;i++)
{
if(!go[p][s[i]-'A'])return ;
p=go[p][s[i]-'A'];
}
access(p); splay(p); return siz[p];//
}
int main()
{
int Q; scanf("%d",&Q);
scanf("%s",s+); int l=strlen(s+);
for(int i=;i<=l;i++)add(s[i]-'A');
for(int i=;i<=Q;i++)
{
scanf("%s",dc); scanf("%s",s); l=strlen(s);
int tmp=mask;//!!-_-
for(int j=;j<l;j++)
{
tmp=(tmp*+j)%l;
char t=s[j]; s[j]=s[tmp]; s[tmp]=t;
}
if(dc[]=='A')for(int j=;j<l;j++)add(s[j]-'A');
else
{
int ans=query(l); mask^=ans;
printf("%d\n",ans);
}
}
return ;
}

bzoj 2555 SubString —— 后缀自动机+LCT的更多相关文章

  1. bzoj 2555: SubString 后缀自动机+LCT

    2555: SubString Time Limit: 30 Sec  Memory Limit: 512 MBSubmit: 688  Solved: 235[Submit][Status][Dis ...

  2. bzoj 2555 SubString——后缀自动机+LCT

    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=2555 要维护 right 集合的大小.因为 fa 会变,且 fa 构成一棵树,所以考虑用 L ...

  3. BZOJ 2555: SubString 后缀自动机_LCT

    很水的一道题,就是有些细节没注意到. 比如说将调试信息误以为是最终结果而多调了20分钟QAQ ..... 我们注意到,每新加一个节点,改变的是该节点沿着 Parent 走一直走到根节点. 对应的,在 ...

  4. bzoj 2555 SubString(SAM+LCT)

    [题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=2555 [题意] 给定一个字符串,可以随时插入字符串,提供查询s在其中作为连续子串的出现 ...

  5. 【BZOJ2555】SubString 后缀自动机+LCT

    [BZOJ2555]SubString Description 懒得写背景了,给你一个字符串init,要求你支持两个操作         (1):在当前字符串的后面插入一个字符串         (2 ...

  6. bzoj 5408: string 后缀自动机 + LCT

    联赛前练练码力. code: #include <vector> #include <cstdio> #include <cstring> #include < ...

  7. ●BZOJ 2555 SubString

    题链: http://www.lydsy.com/JudgeOnline/problem.php?id=2555题解: 后缀自动机+LCT 不难发现,对于输入的询问串,在自动机里trans后的到的状态 ...

  8. bzoj 2555: SubString【后缀自动机+LCT】

    一直WA--找了半天错的发现居然是解密那里的mask其实是不能动的--传进去的会变,但是真实的那个不会变-- 然后就是后缀自动机,用LCT维护parent树了--注意不能makeroot,因为自动机的 ...

  9. 字符串(LCT,后缀自动机):BZOJ 2555 SubString

    2555: SubString Time Limit: 30 Sec  Memory Limit: 512 MBSubmit: 1620  Solved: 471 Description 懒得写背景了 ...

随机推荐

  1. 分区容量大于16TB的格式化

    File systems do have limits. Thats no surprise. ext3 had a limit at 16 TB file system size. If you n ...

  2. ubuntu boost.python

    安装boost(未尝试只安装 libboost-python-dev) sudo apt-get install libboost-all-dev 新建hello_ext.cpp,输入以下代码 1 c ...

  3. 华为p20:拍美景,听讲解,旅行更智能

    华为P20轰轰烈烈地上市了,本来对手机并不感冒的我,看到身边的好友换了P20,不禁感慨:这个月的活又要白干了,全部都要上交给华为,因为这款手机完全戳中了旅游爱好者的痛点. 痛点一:丢弃笨重的单反,手机 ...

  4. Thymeleaf框架

    简单说, Thymeleaf 是一个跟 Velocity.FreeMarker 类似的模板引擎,它可以完全替代 JSP .相较与其他的模板引擎,它有如下三个极吸引人的特点: 1.Thymeleaf 在 ...

  5. 【LeetCode从零单排】No.135Candy(双向动态规划)

    1.题目 There are N children standing in a line. Each child is assigned a rating value. You are giving ...

  6. 将參数从PHP传递到JavaScript中

    php: //自己定义数组參数 $newarr = array('a1' => 'a1', 'a2' => 'a2', 'a3' => 'a3'); $config = CJavaS ...

  7. Angular1.0路由的Hashbang和HTML5模式

    原文答主jupiter http://stackoverflow.com/questions/16677528/location-switching-between-html5-and-hashban ...

  8. 九度OJ 1060:完数VS盈数 (数字特性)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:5590 解决:2093 题目描述: 一个数如果恰好等于它的各因子(该数本身除外)子和,如:6=3+2+1.则称其为"完数" ...

  9. Versions 崩溃(Mac升级OS X Yonsemite 10.10)

    今天兴冲冲的升级到了OS X Yonsemite 10.10,结果发现SVN工具不能用了,于是找到一个暂时的解决的方法 1.打开目录~/.subversion/servers 2.在[global] ...

  10. python cookbook第三版学习笔记十三:类和对象(四)描述器

    __get__以及__set__:假设T是一个类,t是他的实例,d是它的一个描述器属性.读取属性的时候T.d返回的是d.__get__(None,T),t.d返回的是d.__get__(t,T).说法 ...