HDU5421Victor and String(回文树)
Posted cjyyb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU5421Victor and String(回文树)相关的知识,希望对你有一定的参考价值。
【HDU5421】Victor and String(回文树)
题面
Vjudge
大意:
你需要支持以下操作:
动态在前端插入一个字符
动态在后端插入一个字符
回答当前本质不同的回文串个数
回答当前回文串个数
题解
回文树前端插入的操作,学一学感觉并不难?
额外维护一下一个前端插入的(last)
然后就和后端插入一模一样,前端插入时就是前端插入的(last)
唯一会产生的影响的就是当前字符差完后,
发现现在的(last)就是整个串,那么就要更新另外一端的(last)为当前这一端的(last)
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<set>
#include<map>
#include<vector>
#include<queue>
using namespace std;
#define ll long long
#define RG register
#define MAX 222222
inline int read()
{
RG int x=0,t=1;RG char ch=getchar();
while((ch<'0'||ch>'9')&&ch!='-')ch=getchar();
if(ch=='-')t=-1,ch=getchar();
while(ch<='9'&&ch>='0')x=x*10+ch-48,ch=getchar();
return x*t;
}
struct Node
{
int son[26],ff;
int len,dep;
}t[MAX];
char s[MAX];
ll ans;
int tot,l,r,pre,suf,n;
void init()
{
l=1e5,r=l-1;memset(s,'