#define LOCAL #include using namespace std; #pragma region Macros typedef long long ll; typedef __int128_t i128; typedef unsigned int uint; typedef unsigned long long ull; #define ALL(x) (x).begin(), (x).end() template istream& operator>>(istream& is, vector& v) { for (T& x : v) is >> x; return is; } template ostream& operator<<(ostream& os, const vector& v) { for (int i = 0; i < (int)v.size(); i++) { os << v[i] << (i + 1 == (int)v.size() ? "" : " "); } return os; } template ostream& operator<<(ostream& os, const pair& p) { os << '(' << p.first << ',' << p.second << ')'; return os; } template ostream& operator<<(ostream& os, const map& m) { os << '{'; for (auto itr = m.begin(); itr != m.end();) { os << '(' << itr->first << ',' << itr->second << ')'; if (++itr != m.end()) os << ','; } os << '}'; return os; } template ostream& operator<<(ostream& os, const unordered_map& m) { os << '{'; for (auto itr = m.begin(); itr != m.end();) { os << '(' << itr->first << ',' << itr->second << ')'; if (++itr != m.end()) os << ','; } os << '}'; return os; } template ostream& operator<<(ostream& os, const set& s) { os << '{'; for (auto itr = s.begin(); itr != s.end();) { os << *itr; if (++itr != s.end()) os << ','; } os << '}'; return os; } template ostream& operator<<(ostream& os, const multiset& s) { os << '{'; for (auto itr = s.begin(); itr != s.end();) { os << *itr; if (++itr != s.end()) os << ','; } os << '}'; return os; } template ostream& operator<<(ostream& os, const unordered_set& s) { os << '{'; for (auto itr = s.begin(); itr != s.end();) { os << *itr; if (++itr != s.end()) os << ','; } os << '}'; return os; } template ostream& operator<<(ostream& os, const deque& v) { for (int i = 0; i < (int)v.size(); i++) { os << v[i] << (i + 1 == (int)v.size() ? "" : " "); } return os; } template void print_tuple(ostream&, const T&) {} template void print_tuple(ostream& os, const T& t) { if (i) os << ','; os << get(t); print_tuple(os, t); } template ostream& operator<<(ostream& os, const tuple& t) { os << '{'; print_tuple<0, tuple, Args...>(os, t); return os << '}'; } void debug_out() { cerr << '\n'; } template void debug_out(Head&& head, Tail&&... tail) { cerr << head; if (sizeof...(Tail) > 0) cerr << ", "; debug_out(move(tail)...); } #ifdef LOCAL #define debug(...) \ cerr << " "; \ cerr << #__VA_ARGS__ << " :[" << __LINE__ << ":" << __FUNCTION__ << "]" << '\n'; \ cerr << " "; \ debug_out(__VA_ARGS__) #else #define debug(...) 42 #endif template T gcd(T x, T y) { return y != 0 ? gcd(y, x % y) : x; } template T lcm(T x, T y) { return x / gcd(x, y) * y; } int topbit(signed t) { return t == 0 ? -1 : 31 - __builtin_clz(t); } int topbit(long long t) { return t == 0 ? -1 : 63 - __builtin_clzll(t); } int botbit(signed a) { return a == 0 ? 32 : __builtin_ctz(a); } int botbit(long long a) { return a == 0 ? 64 : __builtin_ctzll(a); } int popcount(signed t) { return __builtin_popcount(t); } int popcount(long long t) { return __builtin_popcountll(t); } bool ispow2(int i) { return i && (i & -i) == i; } template T ceil(T x, T y) { assert(y >= 1); return (x > 0 ? (x + y - 1) / y : x / y); } template T floor(T x, T y) { assert(y >= 1); return (x > 0 ? x / y : (x - y + 1) / y); } template inline bool chmin(T1& a, T2 b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T1& a, T2 b) { if (a < b) { a = b; return true; } return false; } #pragma endregion #include #include #include #include template struct Trie { struct Node { std::array nxt; std::vector idxs; int idx, sub; char key; Node(char c) : idx(-1), key(c) { fill(nxt.begin(), nxt.end(), -1); } }; std::vector nodes; inline int& next(int i, int j) { return nodes[i].nxt[j]; } Trie() { nodes.emplace_back('$'); } void add(const std::string& s, int x = 0) { int cur = 0; for (const char& c : s) { int k = c - margin; if (next(cur, k) < 0) { next(cur, k) = nodes.size(); nodes.emplace_back(c); } cur = next(cur, k); nodes[cur].sub++; } nodes[cur].idx = x; nodes[cur].idxs.emplace_back(x); } int find(const std::string& s) { int cur = 0; for (const char& c : s) { int k = c - margin; if (next(cur, k) < 0) return -1; cur = next(cur, k); } return cur; } int move(int pos, char c) { assert(pos < (int)nodes.size()); return pos < 0 ? -1 : next(pos, c - margin); } int size() const { return nodes.size(); } int idx(int pos) { return pos < 0 ? -1 : nodes[pos].idx; } std::vector idxs(int pos) { return pos < 0 ? std::vector() : nodes[pos].idxs; } }; #include #include template struct AhoCorasick : Trie { void build(bool heavy = true) { int n = nodes.size(); cnt.resize(n); for (int i = 0; i < n; i++) cnt[i] = nodes[i].idxs.size(); std::queue que; for (size_t i = 0; i <= char_size; i++) { if (~next(0, i)) { next(next(0, i), FAIL) = 0; que.emplace(next(0, i)); } else next(0, i) = 0; } while (!que.empty()) { auto& cur = nodes[que.front()]; int fail = cur.nxt[FAIL]; cnt[que.front()] += cnt[fail]; que.pop(); for (size_t i = 0; i < char_size; i++) { int& nxt = cur.nxt[i]; if (nxt < 0) { nxt = next(fail, i); continue; } next(nxt, FAIL) = next(fail, i); if (heavy) { auto& u = nodes[nxt].idxs; auto& v = nodes[next(fail, i)].idxs; std::vector w; set_union(u.begin(), u.end(), v.begin(), v.end(), back_inserter(w)); u = w; } que.emplace(nxt); } } } long long match(const std::string& s) { long long res = 0; int cur = 0; for (const char& c : s) { cur = next(cur, c - margin); res += cnt[cur]; } return res; } std::map frequency(const std::string& s) { std::map res; int cur = 0; for (const char& c : s) { cur = next(cur, c - margin); for (auto& idx : nodes[cur].idxs) res[idx]++; } return res; } int count(int pos) { return cnt[pos]; } private: using super = Trie; using super::next; using super::nodes; const int FAIL = char_size; std::vector cnt; }; const int INF = 1e9; const long long IINF = 1e18; const int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1}; const char dir[4] = {'D', 'R', 'U', 'L'}; const long long MOD = 1000000007; // const long long MOD = 998244353; int main() { cin.tie(0); ios::sync_with_stdio(false); string S; int M; cin >> S >> M; AhoCorasick<26, 'A'> AHO; for (; M--;) { string C; cin >> C; AHO.add(C); } AHO.build(); cout << AHO.match(S) << '\n'; return 0; }