循环同构串的判断+broder剃头截尾法实现均摊:P3546

https://www.luogu.com.cn/problem/P3546

两个串的循环同构可以表示成:ABBA,所以我们等价于在原串求:

在这里插入图片描述

显然A可以枚举,我们现在就是要求原串所有中心串的最长不交broder。

这个方法之前提到过,我们可以用broder剃头截尾法。

f i f_i fi 表示 A A A 的长度为 i i i,显然有 f i ≤ f i + 1 + 2 f_i\le f_{i+1}+2 fifi+1+2,我们暴力缩小 f f f,复杂度显然可以均摊

#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL
 #define debug(...) fprintf(stdout, ##__VA_ARGS__)
#else
 #define debug(...) void(0)
#endif
#define int long long
inline int read(){int x=0,f=1;char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;
ch=getchar();}while(ch>='0'&&ch<='9'){x=(x<<1)+
(x<<3)+(ch^48);ch=getchar();}return x*f;}
#define Z(x) (x)*(x)
#define pb push_back
#define fi first
#define se second
//#define M
#define mo 998244353
#define N 1000010
void Mod(int &a) { a%=mo; a+=mo; a%=mo; }
int n, m, i, j, k, T, f[N], c[N], fac[N], ans;
int l, r; 
char str[N]; 

int substr(int a, int b) {
	return ((c[b]-c[a-1]*fac[b-a+1])%mo+mo)%mo; 
}

bool cmp(int a, int b, int c, int d) {
	return substr(a, b) == substr(c, d); 
}

signed main()
{
	#ifdef LOCAL
	  freopen("in.txt", "r", stdin);
	  freopen("out.txt", "w", stdout);
	#endif
//	srand(time(NULL));
//	T=read();
//	while(T--) {
//
//	}
	n=read(); scanf("%s", str+1); ans=0; 
	for(i=fac[0]=1; i<=n; ++i) 
		c[i]=c[i-1]*29+str[i]-'a'+1, Mod(c[i]), 
		fac[i]=fac[i-1]*29%mo; 
	for(i=n/2; i>=1; --i) {
		l=i; r=n-i+1; 
		f[i]=f[i+1]+2; 
		while(f[i] && (l+f[i]-1>=r-f[i]+1 || !cmp(l, l+f[i]-1, r-f[i]+1, r)))
			--f[i]; 
		debug("f[%lld][%lld : %lld] = %lld \n", i, l, r, f[i]); 
	}
	for(i=1; i<=n/2; ++i) 
		if(cmp(1, i, n-i+1, n)) {
			debug("%d is ok !\n", i); 
			ans=max(ans, i+f[i+1]); 	
		}
	printf("%lld", ans); 
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值