首页 > 代码库 > hdu4763Theme Section
hdu4763Theme Section
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4763
nex。
1 /* 2 #include<cstdio> 3 #include<cstring> 4 const int maxn=1e6+10; 5 char s[maxn]; 6 int v[maxn]; 7 8 int main() 9 { 10 int t; 11 scanf("%d",&t); 12 while(t--) 13 { 14 int cnt=0; 15 scanf("%s",s); 16 int n=0; 17 int len=strlen(s); 18 for(int i=0;i<len;i++) 19 if(s[i]==s[0]) v[n++]=i; 20 for(int i=0;i<n;i++) 21 for(int j=i+1;j<n;j++) 22 if(v[j]-v[i]>1) { 23 cnt++; 24 i=j; 25 break; 26 } 27 printf("%d\n",cnt); 28 } 29 } 30 */ 31 //ртио╤а╢МлБак-_-|| 32 #include<cstdio> 33 #include<cstring> 34 const int maxn=1e6+10; 35 char s[maxn]; 36 int nex[maxn]; 37 int n; 38 int main() 39 { 40 int t; 41 scanf("%d",&t); 42 while(t--) 43 { 44 scanf("%s",s); 45 n=strlen(s); 46 int i=0,j=-1; 47 nex[0]=-1; 48 while(i<n) 49 { 50 if(j==-1||s[i]==s[j]) 51 nex[++i]=++j; 52 else j=nex[j]; 53 } 54 if(nex[n]*2>n) printf("%d\n",n/2); 55 else printf("%d\n",nex[n]); 56 } 57 }
hdu4763Theme Section
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。