[KMP] poj 2752

Source: Internet
Author: User

Understand the meaning of the P array in the KMP algorithm (commonly used next array, but I used to name it p ^_^). The meaning of the P array is the same as that of the maximum K characters in the prefix, therefore, finding J = P [J] from the last one is the result. Note that the output is from small to large.

#include <map>#include <set>#include <list>#include <queue>#include <deque>#include <stack>#include <string>#include <time.h>#include <cstdio>#include <math.h>#include <iomanip>#include <cstdlib>#include <limits.h>#include <string.h>#include <iostream>#include <fstream>#include <algorithm>using namespace std;#define LL long long#define MIN INT_MIN#define MAX INT_MAX#define PI acos(-1.0)#define FRE freopen("input.txt","r",stdin)#define FF freopen("output.txt","w",stdout)#define N 400005char str[N];int p[N];int ans[N];int main () {    while (scanf("%s",str+1) != -1) {        int len = strlen(str+1);        int i,j = 0;        p[1] = 0;        cout<<1<<"-->"<<0<<endl;        for (i = 2; i <= len; i++) {            while (j > 0 && str[i] != str[j+1])                j = p[j];            if (str[i] == str[j+1]) j++;            p[i] = j;cout<<i<<"-->"<<j<<endl;        }        int cnt = 0;        for (i = len; i != 0; i = p[i]) {            ans[cnt++] = i;        }        printf("%d",ans[cnt - 1]);        for (i = cnt - 2; i >= 0; i--)        printf(" %d",ans[i]);        puts("");    }    return 0;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.