本来想找\(01Trie\)的结果找到了一堆字典树水题...算了算了当水个提交量好了. 直接插入模式串,维护一个\(Trie\)树的子树\(sum\)大小,求解每一个文本串匹配时走过的链上匹配数和终点处的子树大小之和. #include <bits/stdc++.h> using namespace std; int top, sta[10010]; int n, m, l, s[10010], max_size; int ch[500010][2], sz[500010], sum[5000…