Number Sequence
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Problem Description
Given two sequences of numbers : a[1], a[2], ...... , a[N], and b[1], b[2], ...... , b[M] (1 <= M <= 10000, 1 <= N <= 1000000). Your task is to find a number K which make a[K] = b[1], a[K + 1] = b[2], ...... , a[K + M - 1] = b[M]. If there are more than one K exist, output the smallest one.
Input
The first line of input is a number T which indicate the number of cases. Each case contains three lines. The first line is two numbers N and M (1 <= M <= 10000, 1 <= N <= 1000000). The second line contains N integers which indicate a[1], a[2], ...... , a[N]. The third line contains M integers which indicate b[1], b[2], ...... , b[M]. All integers are in the range of [-1000000, 1000000].
Output
For each test case, you should output one line which only contain K described above. If no such K exists, output -1 instead.
Sample Input
复制代码
1
213 51 2 1 2 3 1 2 3 1 3 2 1 21 2 3 1 313 51 2 1 2 3 1 2 3 1 3 2 1 21 2 3 2 1
Sample Output
复制代码
1
6-1
串的模式匹配:设有两个字符串 S 和 T ,设 S 为主串,也称正文串;设 T 为子串,也称为模式。在主串 S 中查找与模式 T 相匹配的子串,如果匹配成功,确定相匹配的子串中的第一个字符在主串 S 中出现的位置。
KMP算法相对于BF算法的最大特点是:主串的指针不需要回溯,整个匹配过程中,对主串仅需从头至尾扫描一遍。
next数组解决的问题:当主串中第 i 个字符与模式中第 j 个字符''失配'(即比较不等)时,主串中第 i 个字符(i指针不回溯)应与模式中哪个字符再比较。
最长前缀:以第一个字符开始,但是不包含最后一个字符
next数组:用来保存一个字符串的最长前缀和最长后缀相同的长度,其长度和模式相同。
当匹配失败时,next数组中保存的值决定从模式中哪个字符再次开始比较
加上头文件#include<iostream>报编译错误
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45#include<cstdio> #define maxn 1000002 using namespace std; int a[maxn],b[10002],next[10002]; int n,m; void cal_next() { next[0]=-1; int k=-1,j=0; while(j<m) { if(k==-1||b[k]==b[j]) { k++;j++; next[j]=k; }else k=next[k]; } } int KMP() { int i=0,j=0; while(i<n) { if(j==-1||a[i]==b[j]) {i++;j++;} else j=next[j]; if(j==m) return i-m+1; } return -1; } int main() { int t; scanf("%d",&t); while(t--) { scanf("%d%d",&n,&m); for(int i=0;i<n;i++) scanf("%d",&a[i]); for(int i=0;i<m;i++) scanf("%d",&b[i]); cal_next(); printf("%dn",KMP()); } }
最后
以上就是羞涩香烟最近收集整理的关于串的模式匹配-KMP算法 Number Sequence 的全部内容,更多相关串的模式匹配-KMP算法 内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复