codeforces 745/A Hongcow Learns the Cyclic Shift(set 사용)
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”.
제목 링크
http://codeforces.com/problemset/problem/745/A
제목의 대의.
문자열의 마지막 문자를 맨 앞에 올릴 때마다 알 수 있는 문자열입니다. 원래 문자열을 포함하여 최대 몇 개의 다른 문자열을 구성할 수 있는지 물어봅니다.
데이터 범위
s (1 ≤ |s| ≤ 50) lowercase English letters (‘a’–‘z’).
문제풀이의 방향
새 문자열을 set에 저장합니다. 같은 문자열마다 하나만 저장할 수 있기 때문입니다.마지막으로 얼마나 넣었는지 판단하면 돼.작은 기교 이 문제는 원 문자열을 다시 한 번 베껴서 뒤에 붙일 수 있으며, 첫 번째 문자에서 원 문자열의 마지막 문자까지 순환해서 매번 원 문자열의 길이를 뒤로 자르면 모든 새로운 문자열을 얻을 수 있다
해결 코드
#include
#include
#include
#include
#include
using namespace std;
setaa;
int main()
{
string a;
int n ;
cin >> a;
n = a.size();
a = a + a;
for(int i = 0;i < n;i++){
string b;
for(int j = 0;j < n;j++){
b += a[i + j];
}
aa.insert(b);
}
printf("%d
",aa.size());
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
비슷한 이름의 Attribute를 많이 만들어 삭제하는 Houdini사용 소프트웨어는 Houdini16.5입니다 배열에서는 애트리뷰트의 보간이 잘 동작하지 않는 것과 AttributeCreateSOP 노드에서 Size가 4를 넘는 애트리뷰트를 작성해도 값이 조작할 수 없어 의미가 없...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.