后缀数组模板

刘汝佳的代码会RE!!!被坑了3小时!

以下模板自带注释

#include
#include
#include
#include
#include
using namespace std;
#define maxn 100005
#define rank RANK
int n;
char str[maxn];
int cnt[maxn];
int t1[maxn],t2[maxn];
int sa[maxn];
int rank[maxn];
int height[maxn];
void build()
{
	int *x=t1,*y=t2;
	int m=26;
	for(int i=0;i=0;i--) sa[--cnt[x[i]]]=i;
	for(int k=1;k<=n;k<<=1)
	{
		int p=0;
		for(int i=n-1;i>=n-k;i--) y[p++]=i;
		for(int i=0;i=k) y[p++]=sa[i]-k;
		//y[i]:position of the suffix having the i-th "next k num",similar to sa
		memset(cnt,0,sizeof(cnt));
		for(int i=0;i=0;i--) sa[--cnt[x[y[i]]]]=y[i];
		//give a higher rank to suffix with larger second keyword when having same first one
		swap(x,y);//this time,y stores the information
		p=0;
		for(int i=0;i=n) break;
		m=p;
	}
	for(int i=0;i


你可能感兴趣的:(后缀数组,数据结构,OI)