ACM_string
文章平均质量分 90
**:天下第一
这个作者很懒,什么都没留下…
展开
-
【HDU3068】【最长回文】【Manacher裸题】
最长回文 Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 11375 Accepted Submission(s): 4102 Problem Description 给出一个只由小写英文字符a,b,c...原创 2015-08-09 18:27:27 · 502 阅读 · 0 评论 -
【POJ3974】【Palindrome】【Manacher裸题】
Palindrome Time Limit: 15000MS Memory Limit: 65536K Total Submissions: 5711 Accepted: 2068 Description Andy the smart computer science student was attending an algo原创 2015-08-12 09:47:00 · 289 阅读 · 0 评论 -
【KMP】【模板】
/* pku3461(Oulipo), hdu1711(Number Sequence) 这个模板 字符串是从0开始的 Next数组是从1开始的 */ #include #include using namespace std; const int N = 1000002; int next[N]; char S[N], T[N]; int slen, tlen; void getNe转载 2015-09-12 23:55:12 · 2394 阅读 · 0 评论 -
【HDU2087】【KMP】
剪花布条 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 11677 Accepted Submission(s): 7509 Problem Description 一块花布条,里面有些图案,另有一块直接可原创 2015-09-13 00:05:48 · 363 阅读 · 0 评论 -
【KMP】【HDU3746】【最小循环节】
Cyclic Nacklace Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 4475 Accepted Submission(s): 2040 Problem Description CC always原创 2015-09-15 12:38:48 · 558 阅读 · 0 评论 -
【HDU3336】【Count the string】
Count the string Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 6635 Accepted Submission(s): 3072 Problem Description It is wel原创 2015-09-16 14:38:57 · 451 阅读 · 0 评论