【codeforce745A】Hongcow Learns the Cyclic Shift

Hongcow通过学习拼写单词并对其进行循环移位来创造新词汇。此过程涉及将单词的最后一个字符移动到开头,形成不同的组合。挑战在于确定通过这种移位能产生多少种不同的字符串。

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

 Hongcow Learns the Cyclic Shift
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Appoint description: 

Description

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 acyclic 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.

Sample Input

Input
abcd
Output
4
Input
bbb
Output
1
Input
yzyz
Output

2

每次将最后一个字母放到最前面,输出会组成多少不同的字符串,也就是直到出现重复的为止

i\j a b c d

d a b c

c d a b

b c d a

a b c d

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
char c[55][110],s[110];
int main()
{
	
	int faut;
	//while(~scanf("%s",s)){
	scanf("%s",s);
		int l=strlen(s);
		strcpy(c[0],s);
		int num=1;
	   for(int i=1;i<l;i++){
	   	faut=0;
	   	for(int j=0;j<i;j++)
	   	c[i][j]=s[l-i+j];//存储新的字符串 
	   	for(int n=i;n<l;n++)
	   	c[i][n]=s[n-i];
	   	for(int k=0;k<i;k++){
	   		if(strcmp(c[i],c[k])==0){
	   			faut=1;break;
			   }
		   }
		   if(faut==0)
		   num++;
	   }
	   printf("%d\n",num);
	//}
	return 0;
}



   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值