Seek the Name, Seek the FameTime Limit:2000MSMemory Limit:65536KTotal Submissions:14106Accepted:7018DescriptionThe little cat is so famous, that many ...
分类:
编程语言 时间:
2015-08-07 18:55:21
阅读次数:
165
题意:
在a串中寻找第一个包含b串的的位置
思路:直接KMP即可
#include
#define MAXN 1000010
using namespace std;
void kmp_pre(int x[],int m,int next[]){
int i,j;
j=next[0]=-1;
i=0;
while(i<m){
while(-...
分类:
其他好文 时间:
2015-08-07 16:17:55
阅读次数:
129
Count the string
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 6302 Accepted Submission(s): 2919
Problem Description
It is wel...
分类:
其他好文 时间:
2015-08-07 16:12:50
阅读次数:
82
Problem Description
The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulipo group. A quote from the book:
Tout avait Pa...
分类:
其他好文 时间:
2015-08-07 16:12:19
阅读次数:
127
Seek the Name, Seek the FameTime Limit : 4000/2000ms (Java/Other)Memory Limit : 131072/65536K (Java/Other)Total Submission(s) : 12Accepted Submission(...
分类:
其他好文 时间:
2015-08-07 16:01:45
阅读次数:
98
亲串Time Limit: 3000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 8049Accepted Submission(s): 3719Problem Descript...
分类:
其他好文 时间:
2015-08-07 15:59:52
阅读次数:
89
Oulipo
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 7200 Accepted Submission(s): 2867
Problem Description
The French author Geo...
分类:
其他好文 时间:
2015-08-07 13:28:43
阅读次数:
89
Oulipo
Time Limit : 3000/1000ms (Java/Other) Memory Limit : 32768/32768K (Java/Other)
Total Submission(s) : 45 Accepted Submission(s) : 29
Problem Description
The French author Georges Pere...
分类:
其他好文 时间:
2015-08-07 13:24:56
阅读次数:
131
Power Strings
Time Limit: 3000MS
Memory Limit: 65536K
Total Submissions: 37379
Accepted: 15443
Description
Given two strings a and b we define a*b to be their concatena...
分类:
其他好文 时间:
2015-08-07 13:22:56
阅读次数:
97
HDU - 1686
Oulipo
Time Limit: 1000MS
Memory Limit: 32768KB
64bit IO Format: %I64d & %I64u
Submit Status
Description
The French author Georges Perec (1936?1982) onc...
分类:
其他好文 时间:
2015-08-07 01:54:25
阅读次数:
164