Codeforces Round #385 (Div. 2)A.Hongcow Learns the Cyclic Shift【暴力】水题

本文介绍了一道编程题,任务是通过循环移位操作从一个初始字符串中生成尽可能多的独特字符串,并统计这些独特字符串的数量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

A. Hongcow Learns the Cyclic Shift
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word.

Hongcow has decided to try to make new words from this one. He starts by taking the word he just learned how to spell, and moves the last character of the word to the beginning of the word. He calls this a cyclic shift. He can apply cyclic shift many times. For example, consecutively applying cyclic shift operation to the word "abracadabra" Hongcow will get words "aabracadabr", "raabracadab" and so on.

Hongcow is now wondering how many distinct words he can generate by doing the cyclic shift arbitrarily many times. The initial string is also counted.

Input

The first line of input will be a single string s (1 ≤ |s| ≤ 50), the word Hongcow initially learns how to spell. The string s consists only of lowercase English letters ('a'–'z').

Output

Output a single integer equal to the number of distinct strings that Hongcow can obtain by applying the cyclic shift arbitrarily many times to the given string.

Examples
input
abcd
output
4
input
bbb
output
1
input
yzyz
output
2
Note

For the first sample, the strings Hongcow can generate are "abcd", "dabc", "cdab", and "bcda".

For the second sample, no matter how many times Hongcow does the cyclic shift, Hongcow can only generate "bbb".

For the third sample, the two strings Hongcow can generate are "yzyz" and "zyzy".


题目大意:

按照字符串循环的顺序来构造出n个字符串,去重之后,问一共有几个字符串。


思路:


暴力即可。


Ac代码:

#include<stdio.h>
#include<string.h>
using namespace std;
char a[5000];
char ans[5000][55];
int vis[55];
int main()
{
    while(~scanf("%s",a))
    {
        int n=strlen(a);
        for(int i=n;i<2*n;i++)
        {
            a[i]=a[i%n];
        }
        int cont=0;
        a[2*n]='\0';
        for(int i=0;i<n;i++)
        {
            int cnt=0;
            for(int j=i;j<2*n;j++)
            {
                ans[cont][cnt]=a[j];
                cnt++;
                if(cnt==n)break;
            }
            ans[cont][cnt]='\0';
            cont++;
        }
        memset(vis,0,sizeof(vis));
        for(int i=0;i<cont;i++)
        {
            for(int j=0;j<cont;j++)
            {
                if(vis[i]==1||vis[j]==1)continue;
                if(i==j)continue;
                if(strcmp(ans[i],ans[j])==0)
                {
                    vis[j]=1;
                }
            }
        }
        int output=0;
        for(int i=0;i<cont;i++)
        {
            if(vis[i]==0)output++;
        }
        printf("%d\n",output);
    }
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值