后缀数组 da算法

 

sa数组,他保存1....n 的某个排列,sa[2],……,sa[n],并且保证 Suffix(sa[i]) < Suffix(sa[i+1]),1≤i

也就是将 S 的 n 个后缀从小到大进行排序之后把排好序的后缀的开头位置顺次放入 SA 中。

rank数组,他保存的是每个位置的后缀子串的排名,与sa数组是可以互逆的。

height数组,保存了后缀数组中相邻两个后缀的最大公共前缀,height[i] 的值是 sa[i-1]和sa[i]的公共前缀长度。

所有子串,1lengthlength(sa[i]+height[i])

倍增算法

#include
#include
#include
#include
#include
#include
#include
using namespace std;
const int maxn = (1e5+10)*2;
const double eps = 1e-8;
typedef __int64 LL;

const int MAXN = 100010*2;
int t1[MAXN],t2[MAXN],c[MAXN];

bool cmp(int *r,int a,int b,int l)
{
    return r[a]==r[b] && r[a+l] == r[b+l];
}
void da(char str[],int sa[],int rank[],int height[],int n,int m)
{
    n++;
    int i,j,p,*x = t1,*y = t2;
    for(i=0; i=0; i--) sa[--c[x[i]]]=i;
    for(j=1; j<=n; j<<=1)
    {
        p=0;
        for(i=n-j; i=j) y[p++]=sa[i]-j;
        for(i=0; i=0; i--) sa[--c[x[y[i]]]]=y[i];
        swap(x,y);
        p=1;
        x[sa[0]]=0;
        for(i=1; i=n) break;
        m=p;
    }
    int k=0;
    n--;
    for(i=0; i<=n; i++) rank[sa[i]]=i;
    for(i=0; i

 

 

 

 

 

你可能感兴趣的:(刷题)