Common Substrings POJ - 3415

题意

给你串AB问他们的公共子串长度大于k的个数

思路

单调栈维护。。。。。。。。。

#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define INF (1<<30)
typedef long long int ll;
const int MAXN = 100000 + 5;
/*
*suffix array
*倍增算法  O(n*logn)
*待排序数组长度为n,放在0~n-1中,在最后面补一个0
*build_sa( ,n+1, );//注意是n+1;
*getHeight(,n);
*例如:
*n   = 8;
*num[]   = { 1, 1, 2, 1, 1, 1, 1, 2, $ };注意num最后一位为0,其他大于0
*rank[]  = { 4, 6, 8, 1, 2, 3, 5, 7, 0 };rank[0~n-1]为有效值,rank[n]必定为0无效值
*sa[]    = { 8, 3, 4, 5, 0, 6, 1, 7, 2 };sa[1~n]为有效值,sa[0]必定为n是无效值
*height[]= { 0, 0, 3, 2, 3, 1, 2, 0, 1 };height[2~n]为有效值
*
*/
int wa[2*MAXN], wb[2*MAXN], wv[2*MAXN], WS[2*MAXN];
int cmp(int *r, int a, int b, int l){
    return r[a] == r[b] && r[a + l] == r[b + l];
}
void da(int *r, int *sa, int n, int m){
    int i, j, p, *x = wa, *y = wb, *t;
    for (i = 0; i= 0; i--) sa[--WS[x[i]]] = i;
    for (j = 1, p = 1; p= j) y[p++] = sa[i] - j;
        for (i = 0; i= 0; i--) sa[--WS[wv[i]]] = y[i];
        for (t = x, x = y, y = t, p = 1, x[sa[0]] = 0, i = 1; iheight[i])
			{
				sum-=(ll)(st[top]-k+1)*cont[top];
				sum+=(ll)(height[i]-k+1)*cont[top];
				num+=cont[top];
				top--;
			}
			st[++top]=height[i];
			if(sa[i-1]>len1)
			{
				sum+=(ll)(height[i]-k+1);
				cont[top]=num+1;
			}
			else cont[top]=num;
			if(sa[i]height[i])
			{
				sum-=(ll)(st[top]-k+1)*cont[top];
				sum+=(ll)(height[i]-k+1)*cont[top];
				num+=cont[top];
				top--;
			}
			st[++top]=height[i];
			if(sa[i-1]len1) ans+=sum;
		}

		printf("%lld\n",ans);
	}
}

 

你可能感兴趣的:(字符串/后缀数组)