CUC-SUMMER-6-A

A - Hongcow Learns the Cyclic Shift
CodeForces - 745A

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.

Example
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".


题意:一个字符串顺序不变,有几种不同变化。

解法:字符串拼接,将第一个字符放到最后,再放第二个,直到倒数第二个字符,每次变化后用set来存储,去掉重复字符串,最后求set的size为变化个数。

代码:

#include<iostream>
#include<cstring>
#include<string>
#include<set>
using namespace std;
int main()
{
    set<string> a;
    string str,str1,str2;
    cin>>str;
    int n=str.length();
    for(int i=0;i<n;i++){
        str1=str.substr(0,i);
        str2=str.substr(i,n-i);
        a.insert(str2+str1);
    }
    cout<<a.size()<<endl;
    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 13,408评论 0 23
  • The Great A.I. Awakening How Google used artificial intel...
    图羽阅读 5,077评论 0 3
  • 在路上-前奏 旅行的开始是需要适应的,需要些时间和空间逐渐进入旅行状态。那么目的地够远,远到一天两天到不了,需要整...
    kirk1221阅读 1,397评论 2 1
  • 此刻我的心情是沉重的,因为觉得9月的自己对不起8月做计划的自己,此刻的犯罪感上升。怎么可以只做到这个程度,这真的不...
    乐言乐语阅读 1,820评论 1 0
  • 和直觉相反,新手的大部分时间花在外围活动上,真正用来掌握核心业务的时间反倒不多 最近利用业余时间给朋友集成一台特殊...
    ruben肖三渔阅读 3,570评论 1 4