字符串
文章平均质量分 78
ten_three
这个作者很懒,什么都没留下…
展开
-
hdu4763(kmp水题)
地址:http://acm.hdu.edu.cn/showproblem.php?pid=4763 Theme Section Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Problem Description It's time for mu原创 2013-12-05 21:04:55 · 1041 阅读 · 0 评论 -
hdu3068 Manacher算法
#include using namespace std; #define N 110001 char s[N],str[N*2]; int p[N*2],len; int max(int a,int b) {return a>b?a:b;} int min(int a,int b) {return a<b?a:b;} void Manacher() { int i,mx,原创 2013-06-04 19:52:00 · 802 阅读 · 0 评论