首页 > 代码库 > (UVA)455 --Periodic Strings(周期串)
(UVA)455 --Periodic Strings(周期串)
题目链接:http://vjudge.net/problem/UVA-455
可以从1开始枚举周期,对后面的字符逐个测试。
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 using namespace std; 5 6 int main() 7 { 8 int t; 9 char s[100]; 10 scanf("%d",&t); 11 while(t--) 12 { 13 scanf("%s",s); 14 int len=strlen(s); 15 int loop,test; 16 for(loop=1;loop<=len;loop++) 17 { 18 if(len%loop==0) 19 { 20 for(test=loop;test<=len;test++) 21 if(s[test]!=s[test%loop]) break; 22 if (test==len) 23 { 24 printf("%d\n",loop); 25 break; 26 } 27 } 28 } 29 if (t) printf("\n"); 30 } 31 return 0; 32 }
(UVA)455 --Periodic Strings(周期串)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。