CodeForces 149E Martian Strings

KMP求出T[0..i]包含P的最长前缀。。

d[i]=max(k):P[0..k-1]是T[0..i]的子串

然后把T和P倒过来,再搞一次KMP。

如果T的前缀和与他互补的后缀包含P的最长前缀/后缀长度和>=P长度,那么P可行。

E. Martian Strings
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

During the study of the Martians Petya clearly understood that the Martians are absolutely lazy. They like to sleep and don't like to wake up.

Imagine a Martian who has exactly n eyes located in a row and numbered from the left to the right from 1 to n. When a Martian sleeps, he puts a patch on each eye (so that the Martian morning doesn't wake him up). The inner side of each patch has an uppercase Latin letter. So, when a Martian wakes up and opens all his eyes he sees a string s consisting of uppercase Latin letters. The string's length is n.

"Ding dong!" — the alarm goes off. A Martian has already woken up but he hasn't opened any of his eyes. He feels that today is going to be a hard day, so he wants to open his eyes and see something good. The Martian considers only mMartian words beautiful. Besides, it is hard for him to open all eyes at once so early in the morning. So he opens two non-overlapping segments of consecutive eyes. More formally, the Martian chooses four numbers abcd, (1 ≤ a ≤ b < c ≤ d ≤ n) and opens all eyes with numbers i such that a ≤ i ≤ b or c ≤ i ≤ d. After the Martian opens the eyes he needs, he reads all the visible characters from the left to the right and thus, he sees some word.

Let's consider all different words the Martian can see in the morning. Your task is to find out how many beautiful words are among them.

Input

The first line contains a non-empty string s consisting of uppercase Latin letters. The strings' length is n (2 ≤ n ≤ 105). The second line contains an integer m (1 ≤ m ≤ 100) — the number of beautiful words. Next m lines contain the beautiful wordspi, consisting of uppercase Latin letters. Their length is from 1 to 1000. All beautiful strings are pairwise different.

Output

Print the single integer — the number of different beautiful strings the Martian can see this morning.

Sample test(s)
input
ABCBABA
2
BAAB
ABBA
output
1
Note

Let's consider the sample test. There the Martian can get only the second beautiful string if he opens segments of eyes a = 1, b = 2 and c = 4, d = 5 or of he opens segments of eyes a = 1, b = 2 and c = 6, d = 7.


#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
const int N=100100;
char T[N],P[N];
#define ll long long
#define prt(k) ;//cout<<#k"="<<k<<' '
#include<algorithm>
int f[N];
int d[3][N];
void kmp(char P[],char T[],int t)   
{
    int i,j,k;
    int m=strlen(P),n=strlen(T);
    f[0]=f[1]=0;
    j=0;
    for(int i=1;i<m;i++)
    {
        int j=f[i];
        while(j&&P[i]!=P[j]) j=f[j];
        f[i+1]=P[i]==P[j]?j+1:0;
    }
    j=0;
    for(int i=0;i<n;i++)
    {
        while(j&&T[i]!=P[j]) j=f[j];
        if(P[j]==T[i]) j++;
        d[t][i]=j;  
    }
}
char TR[N];  char PR[N];
int main()
{
    scanf("%s",T);
    ll ans=0;  int n=strlen(T);   
    strcpy(TR,T);
     reverse(TR,TR+n);
    int re ; cin>>re;
    while(re--)
    {
        scanf("%s",P);
        kmp(P,T,1);
        int m=strlen(P);   //prt(m);  putchar(10);
        strcpy(PR,P);   if(m==1) continue;
        reverse(PR,PR+m);
        kmp(PR,TR,2);
        for(int i=1;i<n;i++) d[1][i]=max(d[1][i],d[1][i-1]);
        for(int i=1;i<n;i++) d[2][i]=max(d[2][i],d[2][i-1]);
       // for(int i=0;i<n;i++) printf("d1[%d]=%d ",i,d[1][i]); putchar(10);
       // for(int i=0;i<n;i++) printf("d2[%d]=%d ",n-i-1,d[2][n-i-1]); putchar(10);
        int yes=0;
        for(int i=0;i<n;i++)
        {
            int j=n-i-2;   if(j<0) continue;
            int x=d[1][i],y=d[2][j];
            if(x+y>=m) { yes=1; break; }
        }
        ans+=yes;
    }
    cout<<ans<<endl;
}



你可能感兴趣的:(KMP,codeforces)