模板题,找来测代码。
注意有相同单词
//#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 unsigned long long ull; typedef pair<int,int> pii; #define pb(a) push(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), c); } template<class T> T max(const T& a, const T& b, const T& c) { return max(max(a, b), c); } void debug() { #ifdef ONLINE_JUDGE #else freopen("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; } const int max_len = 510; const int max_node = max_len * max_len; const int sigma_size = 26; struct ac_automation { int sz; int ch[max_node][sigma_size]; int fail[max_node]; vector<int> val[max_node]; int last[max_node]; void init() { memset(ch[0], 0, sizeof(ch[0])); val[0].clear(); sz = 1; } int id(char c) { return c - 'a'; } void insert(const char *s, int v) { int u = 0; for(int i = 0; s[i] != '