1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
#include <iostream> #include <string> #include <queue> using namespace std; int res; struct node{ int cont; node *next[26]; node() { cont=0; for(int i=0;i<26;i++) next[i]=NULL; } }*root; void insert(string s) { node *tmp= root; int len=s.size(); int idx; for(int i=0;i<len;i++) { idx= s[i]-'a'; if(tmp->next[idx]==NULL) tmp->next[idx]=new node(); tmp->next[idx]->cont++; tmp = tmp->next[idx]; } } void del(node *r) { for(int i=0;i<26;i++) if(r->next[i]!=NULL) del(r->next[i]); delete(r); } int solve() { queue<node*> q; node *tmp= new node(); res=0; q.push(root); while(!q.empty()) { tmp = q.front(); q.pop(); for(int i=0;i<26;i++) { if(tmp->next[i]!=NULL) { res+=tmp->next[i]->cont; if((tmp->next[i]->cont)>1) q.push(tmp->next[i]); } } } } int main() { int t,n; string str; cin>>t; while(t--) { cin>>n; root = new node(); for(int i=0;i<n;i++) { cin>>str; insert(str); //cout<<"inserted\n"; } solve(); cout<<res<<"\n"; del(root); } return 0; } |