CF1029 A. Many Equal Substrings

版权声明:转载时标明一下出处啦QwQ https://blog.csdn.net/Zero_979/article/details/82193005

题目地址:http://codeforces.com/problemset/problem/1029/A

题目:

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

思路:

一开始不知道有个东西叫substr,这东西很好用恩……

代码:

#include<iostream>
#include<string>
#include<cstring>
#include<cstdio>
using namespace std;
int main()
{
    int n,k;
    while(scanf("%d%d",&n,&k)!=EOF){
        string a;
        cin>>a;
        int kk=0;
        for(int i=0;i<n;i++)
        {
            if(a.substr(0,i)==a.substr(n-i,i))kk=i;
        }
        cout<<a;
        for(int i=0;i<k-1;i++)
        {
            for(int i=kk;i<n;i++)
            {
                cout<<a[i];
            }
        }
        cout<<endl;
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/Zero_979/article/details/82193005