当前位置: 代码迷 >> 综合 >> HDU 3746 Cyclic Nacklace KMP的性质应用
  详细解决方案

HDU 3746 Cyclic Nacklace KMP的性质应用

热度:9   发布时间:2024-01-20 20:34:03.0

前面做过类似的题了,所以切出这个来也很简单。

关于KMP的小应用,KMP的next数组的作用就是用来记录前面的串的状态的。

可以用Len-next[Len]得出当前点的循环节。。。

这个还是很好理解的。

好了KMP在切掉POJ的就在此告一段落了。。。。

#include<iostream>
using namespace std;char t[111111];
int next[111111];
int LenT;void setNext()
{int j=0,k=-1;next[0]=-1;while( j<LenT ){if( k==-1||t[j]==t[k] )next[++j]=++k;elsek=next[k];}
}int main()
{int T;scanf( "%d",&T );while( T-- ){scanf( "%s",&t );LenT=strlen(t);setNext();int loop=LenT-next[LenT];if( next[LenT]==0 )printf( "%d\n",LenT );else if( loop==1 || LenT%loop==0 )printf( "0\n" );elseprintf( "%d\n",(LenT/(loop)+1)*loop-LenT );}return 0;
}