A. Many Equal Substrings
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
You are given a string tt consisting of nn lowercase Latin letters and an integer number kk.
Let's define a substring of some string ss with indices from ll to rr as s[l…r]s[l…r].
Your task is to construct such string ss of minimum possible length that there are exactly kk positions ii such that s[i…i+n−1]=ts[i…i+n−1]=t. In other words, your task is to construct such string ss of minimum possible length that there are exactly kk substrings of ss equal to tt.
It is guaranteed that the answer is always unique.
Input
The first line of the input contains two integers nn and kk (1≤n,k≤501≤n,k≤50) — the length of the string tt and the number of substrings.
The second line of the input contains the string tt consisting of exactly nn lowercase Latin letters.
Output
Print such string ss of minimum possible length that there are exactly kk substrings of ss equal to tt.
It is guaranteed that the answer is always unique.
Examples
input
Copy
3 4 aba
output
Copy
ababababa
input
Copy
3 2 cat
output
Copy
catcat
代码:
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
void getNext(string const P,int n,int next[]){ //字符串特征向量
next[0] = 0;
for(int i=1;i<n;++i){
int k = next[i-1];
while( k > 0 && P[k] != P[i] ) k = next[k-1];
next[i] = ( P[i] == P[k] ) ? k + 1 : 0;
}
return;
}
int main()
{
int a,b;
int next[60];
scanf("%d %d",&a,&b);
string s;
string f;
cin>>s;
f=s;
int flag=0;
getNext(s,a,next);
// cout<<next[a-1]<<endl;
for(int i=a-1;i>a-1-next[a-1];--i){
s.erase(i);
}
for(int i=0;i<b-1;++i)
cout<<s;
cout<<f<<endl;
return 0;
}