// #define _GLIBCXX_DEBUG #include #include #define rep(i,b) for(int i=0;i=0;i--) #define rep1(i,b) for(int i=1;i=x;i--) #define fore(i,a) for(auto i:a) #define fore1(i,a) for(auto &i:a) #define rng(x) (x).begin(), (x).end() #define rrng(x) (x).rbegin(), (x).rend() #define sz(x) ((int)(x).size()) #define pb push_back #define fi first #define se second using namespace std; using namespace atcoder; using ll = long long; template using mpq = priority_queue, greater>; template bool chmax(T &a, const T &b) { if (a bool chmin(T &a, const T &b) { if (b ll sumv(const vector&a){ll res(0);for(auto&&x:a)res+=x;return res;} bool yn(bool a) { if(a) {cout << "Yes" << endl; return 1;} else {cout << "No" << endl; return 0;}} #define dame { cout << "No" << endl; return 0;} #define dame1 { cout << -1 << endl; return 0;} #define test(x) cout << "test" << x << endl; #define deb(x,y) cout << x << " " << y << endl; #define debp(p) cout << p.fi << " " << p.se << endl; #define deb3(x,y,z) cout << x << " " << y << " " << z << endl; #define deb4(x,y,z,x2) cout << x << " " << y << " " << z << " " << x2 << endl; #define out cout << ans << endl; #define outv fore(yans , ans) cout << yans << "\n"; #define show(x) cerr<<#x<<" = "<; using pil = pair; using pli = pair; using pii = pair; using tp = tuple; using vi = vector; using vl = vector; using vs = vector; using vb = vector; using vpii = vector; using vpli = vector; using vpll = vector; using vpil = vector; using vvi = vector>; using vvl = vector>; using vvs = vector>; using vvb = vector>; using vvpii = vector>; using vvpli = vector>; using vvpll = vector; using vvpil = vector; using mint = modint998244353; using vm = vector; using vvm = vector>; vector dx={1,0,-1,0,1,1,-1,-1},dy={0,1,0,-1,1,-1,1,-1}; ll gcd(ll a, ll b) { return a?gcd(b%a,a):b;} ll lcm(ll a, ll b) { return a/gcd(a,b)*b;} const double eps = 1e-10; const ll LINF = 1001002003004005006ll; const int INF = 1001001001; template struct Trie { struct Node { // 頂点を表す構造体 vector next; // 子の頂点番号を格納。存在しなければ-1 vector accept; // 末端がこの頂点になる単語の word_id を保存 int c; // base からの間隔をint型で表現したもの int common; // いくつの単語がこの頂点を共有しているか Node(int c_) : c(c_), common(0) { next.assign(char_size, -1); } }; vector nodes; // trie 木本体 int root; Trie() : root(0) { nodes.push_back(Node(root)); } // 単語の挿入 vi insert(const string &word, int word_id) { int node_id = 0; vi ret; for (int i = 0; i < (int)word.size(); i++) { int c = (int)(word[i] - base); int &next_id = nodes[node_id].next[c]; if (next_id == -1) { // 次の頂点が存在しなければ追加 next_id = (int)nodes.size(); nodes.push_back(Node(c)); } ret.pb(next_id); ++nodes[node_id].common; node_id = next_id; } ++nodes[node_id].common; nodes[node_id].accept.push_back(word_id); return ret; } vi insert(const string &word) { vi ret = insert(word, nodes[0].common); return ret; } // 単語とprefixの検索 bool search(const string &word, bool prefix = false) { int node_id = 0; for (int i = 0; i < (int)word.size(); i++) { int c = (int)(word[i] - base); int &next_id = nodes[node_id].next[c]; if (next_id == -1) { // 次の頂点が存在しなければ終了 return false; } node_id = next_id; } return (prefix) ? true : nodes[node_id].accept.size() > 0; } // prefix を持つ単語が存在するかの検索 bool start_with(const string &prefix) { return search(prefix, true); } // 挿入した単語の数 int count() const { return (nodes[0].common); } // Trie木のノード数 int size() const { return ((int)nodes.size()); } };Trie<26 , 'a'> trie; /* Trie 木: 文字の種類(char_size)、int型で0に対応する文字(base) insert(word): 単語 word を Trie 木に挿入する search(word): 単語 word が Trie 木にあるか判定する start_with(prefix): prefix が一致する単語が Trie 木にあるか判定する count(): 挿入した単語の数を返す size(): Trie 木の頂点数を返す 計算量:insert, search ともに O(M)(Mは単語の長さ) */ vi v,in,ou; void dfs(int x,int pre){ in[x] = sz(v); v.pb(0); rep(i,26){ int y = trie.nodes[x].next[i]; if (y == -1 || y == pre) continue; dfs(y , x); } ou[x] = sz(v); v.pb(0); return; } int main(){ int n; cin>>n; vs s(n),s2(n); rep(i,n) {cin>>s[i]; s2[i] = s[i];} int q; cin>>q; vi t(q),x(q),c(q); rep(i,q){ cin>>t[i]>>x[i]; x[i]--; if (t[i] == 1){ char cc;cin>>cc; c[i] = cc - 'a'; s2[x[i]] += cc; } } vvi sv(n); rep(i,n){ sv[i] = trie.insert(s2[i]); } int m = sz(trie); in.resize(m); ou.resize(m); dfs(0 , -1); fenwick_tree fw(sz(v)); vi cnt(n); rep(i,n){ cnt[i] = sz(s[i]); rep(j,cnt[i]){ fw.add(in[sv[i][j]] , 1); fw.add(ou[sv[i][j]] , -1); } } // rep(i,sz(v)){ // show(i); // cout << fw.sum(i , i+1) << endl; // } // rep(i,m){ // show(i); // deb(in[i] , ou[i]); // } // rep(i,n){ // show(i); // cout << s2[i] << endl; // showv(sv[i]); // } vl ans; rep(i,q){ if (t[i] == 1){ fw.add(in[sv[x[i]][cnt[x[i]]]] , 1); fw.add(ou[sv[x[i]][cnt[x[i]]]] , -1); cnt[x[i]]++; }else{ ll tmp = fw.sum(0 , in[sv[x[i]][cnt[x[i]]-1]]+1); ans.pb(tmp); } } outv; // 消せ!!!!!! #define _GLIBCXX_DEBUG // priority_queue でしぬ return 0; }