标签:return for 用户体验 click ios 指定 scan 计数 允许
abcd在单词表中出现过;abc与单词abcd、aabc的编辑距离都是1;abcdd与单词abcd、abcde、abced的编辑距离都是1。
即使对这道题用 Trie 的复杂度令人犹豫,,,= =好像还是不少人写的 Trie
以下代码实现了一个可以指定已知前缀进行查询的 Trie
=w= 不知道为什么博客园复制 Codeforces 的题目会乱版
相比BZOJ就不会了:虽然用户体验不好但是起码版式还算正常
1 #include<cstdio> 2 #include<iostream> 3 #include<cstring> 4 #define maxn 202000 5 using namespace std; 6 7 char s[maxn]; 8 int trie[maxn][30],CNT; 9 int end[maxn],tclock = 1,n,m; 10 11 void insert(char *str){ 12 int len = strlen(str),pos = 0; 13 for(int i = 0;i < len;i++){ 14 if(!trie[pos][str[i]-‘a‘]) trie[pos][str[i]-‘a‘] = ++CNT; 15 pos = trie[pos][str[i]-‘a‘]; 16 }end[pos] = 1; 17 } 18 19 int find(char *str,int k = 0,int pos = 0){ 20 int len = strlen(str); 21 for(int i = 0;i < len;i++){ 22 if(!trie[pos][str[i]-‘a‘]) return 0; 23 pos = trie[pos][str[i]-‘a‘]; 24 }if(k && end[pos]) return 1; 25 if(end[pos] && end[pos] != tclock){ 26 end[pos] = tclock; 27 // printf("Get in #%d\n",pos); 28 return 1; 29 } 30 return 0; 31 } 32 33 int main(){ 34 scanf("%d%d",&n,&m); 35 36 while(n--){ 37 scanf("%s",s); 38 insert(s); 39 } 40 41 // for(int i = 0;i <= CNT;i++){ 42 // for(int j = 0;j < 26;j++){ 43 // printf("%d ",trie[i][j]); 44 // }cout << endl; 45 // } 46 47 while(m--){ 48 scanf("%s",s); 49 int len = strlen(s); 50 51 if(find(s,1)){ 52 cout << -1 << endl; 53 continue; 54 } 55 56 tclock++; 57 58 // Add 59 int pos = 0,ans = 0; 60 for(int i = 0;i <= len;i++){ 61 for(int j = 0;j < 26;j++){ 62 63 if(!trie[pos][j]) continue; 64 int cnt = trie[pos][j]; 65 if(find(s+i,0,cnt)){ 66 ans++; 67 // cout << "pos" << pos << endl; 68 // printf("a%d %d\n",i,j); 69 // cout << s+i << endl; 70 } 71 // ans += find(s+i,0,cnt); 72 73 } 74 if(!trie[pos][s[i]-‘a‘]) break; 75 pos = trie[pos][s[i]-‘a‘]; 76 } 77 78 // Delete 79 pos = 0; 80 for(int i = 0;i < len;i++){ 81 if(find(s+i+1,0,pos)){ 82 ans++; 83 // printf("-%d\n",i); 84 } 85 if(!trie[pos][s[i]-‘a‘]) break; 86 pos = trie[pos][s[i]-‘a‘]; 87 } 88 89 // Change 90 pos = 0; 91 for(int i = 0;i < len;i++){ 92 for(int j = 0;j < 26;j++){ 93 if(!trie[pos][j]) continue; 94 int cnt = trie[pos][j]; 95 if(find(s+i+1,0,cnt)){ 96 ans++; 97 // printf("@%d %d\n",i,j); 98 } 99 } 100 if(!trie[pos][s[i]-‘a‘]) break; 101 pos = trie[pos][s[i]-‘a‘]; 102 } 103 104 printf("%d\n",ans); 105 } 106 107 return 0; 108 }
[BZOJ] 1819: [JSOI]Word Query电子字典
标签:return for 用户体验 click ios 指定 scan 计数 允许
原文地址:http://www.cnblogs.com/Chorolop/p/7606214.html