Many Equal Substrings CF - 1029A (KMP)

Posted xcfxcf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Many Equal Substrings CF - 1029A (KMP)相关的知识,希望对你有一定的参考价值。

技术图片

 

 题意:给你n个由小写字母组成的字符串S,求出能找到k个S的新字符串,并且尽量短

考察nxt数组的含义

技术图片技术图片
#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn = 4e5 + 10;
int n,k;
char s[maxn];
int l;
int nxt[maxn];
int ans[maxn];
void work() {
    for (int i = 2, j = 0; i <= l; i++) {
        while (j > 0 && s[i] != s[j + 1])
            j = nxt[j];
        if (s[i] == s[j + 1]) j++;
        nxt[i] = j;
    }
}



int main() {
    //freopen("in","r",stdin);
    scanf("%d %d",&n,&k);
   scanf("%s", s + 1);
   l = strlen(s + 1);
   work();
   printf("%s",s+1);
   k--;
   while(k--){
       for(int i = nxt[l] + 1;i <= l; i++)
           printf("%c",s[i]);
    }
    printf("
");
    return 0;
}
View Code

 

以上是关于Many Equal Substrings CF - 1029A (KMP)的主要内容,如果未能解决你的问题,请参考以下文章

codeforces 1029 A. Many Equal Substrings

1208. Get Equal Substrings Within Budget

leetcode1208. Get Equal Substrings Within Budget

How Many Substrings?

CF961F k-substrings

CF1276F Asterisk Substrings