博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu3336Count the string(KMP)
阅读量:4974 次
发布时间:2019-06-12

本文共 574 字,大约阅读时间需要 1 分钟。

题目链接:

nex数组。

1 #include
2 #include
3 const int maxn=200010; 4 char s[maxn]; 5 int nex[maxn]; 6 int n; 7 int main() 8 { 9 int t;10 int cnt;11 scanf("%d",&t);12 while(t--)13 {14 cnt=0;15 scanf("%d",&n);16 scanf("%s",s);17 int i=0,j=-1;18 nex[0]=-1;19 while(i
0) cnt=(cnt+1)%10007;24 }25 else j=nex[j];26 27 }28 printf("%d\n",(cnt+n%10007)%10007);29 }30 }

 

转载于:https://www.cnblogs.com/yijiull/p/6613966.html

你可能感兴趣的文章
JSP常用标签
查看>>
九涯的第一次
查看>>
处理器管理与进程调度
查看>>
向量非零元素个数_向量范数详解+代码实现
查看>>
java if 用法详解_Java编程中的条件判断之if语句的用法详解
查看>>
matlab sin函数 fft,matlab的fft函数的使用教程
查看>>
mysql adddate()函数
查看>>
mysql sin() 函数
查看>>
单片机复位电路
查看>>
php json_decode失败,返回null
查看>>
3-day3-list-truple-map.py
查看>>
Edit控件显示多行文字
查看>>
JS第二周
查看>>
dataTable.NET的search box每輸入一個字母進行一次檢索的問題
查看>>
Python 文件处理
查看>>
邻接表详解
查看>>
迭代dict的value
查看>>
eclipse package,source folder,folder区别及相互转换
查看>>
Py 可能是最全面的 python 字符串拼接总结(带注释版)
查看>>
《Java程序设计实验》 软件工程18-1,3 OO实验2
查看>>