题意:有Ť组测试样例
给你两个序列A,B的长度及其值
求乙序列包含与阿中哪个连续段
有则输出靠左的位置下标(从一开始),如果没有输出-1
ACcode:
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e7+10;
int nextx[maxn];
int A[maxn],B[maxn];
int lenA,lenB;
void Get_nextx(){ //求next 即B串的镜像对称 123 | 123 这种对称
int j=0,k=-1;
nextx[0]=-1;
while(j < lenB){
if(k == -1 || B[j] == B[k]){
nextx[++j]=++k;
}
else k= nextx[k];
}
}
int KMP_index(){
Get_nextx();
int i=0,j=0;
while(i < lenA && j<lenB){
if(j == -1 || A[i] == B[j]){
i++;j++;
}
else j=nextx[j];
// printf("%d %d \n",i,j);
}
if(j == lenB) return i-lenB+1;
else return -1;
}
int main(){
int t;scanf("%d",&t);
while(t--){
scanf("%d %d",&lenA,&lenB);
for(int i=0;i<lenA;i++) scanf("%d",&A[i]);
for(int i=0;i<lenB;i++) scanf("%d",&B[i]);
int res=KMP_index();
printf("%d\n",res);
}
return 0;
}