码迷,mamicode.com
首页 > 其他好文 > 详细

花样百出

时间:2017-06-13 23:51:32      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:style   std   white   strlen   ret   count   ring   set   --   

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
char s[30010];
int N;
int part1(int x)
{
int i,j,c=0;
for(i=x+1;i>=0;i--)
{
if(s[i]!=s[x])continue;
for(j=x;j>=i+1;j--)
if(s[j]!=s[i+j-x])break;
if(j==i)c++;
}
return c;
}
int part2(int x)
{
int i,j,c=0;
for(i=x+1;i<N;i++)
{
if(s[i]!=s[x])continue;
for(j=x;j<=i-1;j++)
if(s[j]!=s[i+j-x])break;
if(j==i)c++;
}
return c;
}
int main()
{
int n;
scanf("%d\n",&n);
for(int i=1;i<=n;i++)
{
int counter=0;
memset(s,0,sizeof(char));
scanf("%s",s),N=strlen(s);
printf("%s\n",s);
for(int j=1;j<strlen(s)-1;j++)
{
counter+=part1(j-1)*part2(j);
printf("%d %d %d\n",j,part1(j-1),part2(j));
}
printf("%d\n",counter);
}
}

花样百出

标签:style   std   white   strlen   ret   count   ring   set   --   

原文地址:http://www.cnblogs.com/OcahIBye/p/7003791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!