第一道KMP
以后这个就作为模版了
#include#include #include #include using namespace std;inline int read(){ int x=0,f=1,ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f;}char word[10005];int len1;int nxt[10005];inline void pre(){ nxt[0]=-1; int j=0,k=-1; while(j