首页 > 其他 > 详细

POJ2752 Seek the Name, Seek the Fame

时间:2021-08-16 22:57:42      阅读:21      评论:0      收藏:0      [点我收藏+]

题目

前后缀的重合,很有KMP的感觉
next(或者pre)的妙用

最后输出答案用了递归

#include <string>
#include <iostream>
#define MAXN 400005
using namespace std;

string str;
int pre[MAXN];
int T;

void dfs(int size) {
    if(size==0) return;
    dfs(pre[size]);
    printf("%d ",size);
}

int main() {

    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);

    while( cin >> str ) {
        
        int size = str.length(); str = ‘ ‘ + str;
        pre[1] = 0; int len = 0; 
        for(int i=1;i<size;++i) {
            while(len&&str[i+1]!=str[len+1]) len = pre[len];
            if(str[i+1]==str[len+1]) len++;
            pre[i+1] = len;
        }

        dfs(size); puts("");
    }

}

POJ2752 Seek the Name, Seek the Fame

原文:https://www.cnblogs.com/Neworld1111/p/15150165.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!