KMP.
暴力strstr也轻松过.
//#pragma comment(linker, "/STACK:1024000000,1024000000") #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<iostream> #include<sstream> #include<cmath> #include<climits> #include<string> #include<map> #include<queue> #include<vector> #include<stack> #include<set> using namespace std; typedef long long ll; typedef pair<int,int> pii; #define pb(a) push_back(a) #define INF 0x1f1f1f1f #define lson idx<<1,l,mid #define rson idx<<1|1,mid+1,r #define PI 3.1415926535898 template<class T> T min(const T& a,const T& b,const T& c) { return min(min(a,b),min(a,c)); } template<class T> T max(const T& a,const T& b,const T& c) { return max(max(a,b),max(a,c)); } void debug() { #ifdef ONLINE_JUDGE #else freopen("d:\in.txt","r",stdin); // freopen("d:\out1.txt","w",stdout); #endif } int getch() { int ch; while((ch=getchar())!=EOF) { if(ch!=' '&&ch!=' ')return ch; } return EOF; } void GetNext(const char *s ,int *next) { int len=strlen(s); next[0]=next[1]=0; for(int i=2;i<=len;i++) { int j=next[i-1]; if(j&&s[j]!=s[i-1])j=next[j]; if(s[j]==s[i-1])next[i]=j+1; else next[i]=0; } } void reversal( char *s) { int len=strlen(s); for(int i=0,j=len-1;i<j;i++,j--) swap(s[i],s[j]); } void strcut(char *sub,char *p,char *ed) { int k=0; for(;p!=ed;p++,k++) { sub[k]=*p; } sub[k]='