标签:长度 ace name 范围 cst namespace 时间 default one
最经,skyzhong得到了一本好厉害的字典,这个字典里整整有n个单词(1<=n<=200000)
现在skyzhong需要在字典里查询以某一段字母开头的单词
如:skyzhong想查询a
那么只要是a开头的单词就可以了
skyzhong只想知道里面有没有这一个单词(因为没有他就不查了)
若有,请输出YES。若没有,请输出NO
第一行一个数n
第二行到第n+1行,一行一个字符串
再下一行一个数m,表示skyzhong想要查询的次数
接着m行,一行一个字符串,表示skyzhong想要查的东西
共m行,若有这字串输出YES,否则输出NO
3
asd
asfdghj
asfd
3
asd
asdghj
asf
YES
NO
YES
字符串只有小写字母,且长度≤8
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #define MAXN 1600100 using namespace std; int n,m,a,tot,len,root,trie[MAXN][30]; char s[10]; void insert(){ root=0; len=strlen(s); for(int i=0;i<len;i++){ int x=s[i]-‘a‘; if(!trie[root][x]) trie[root][x]=++tot; root=trie[root][x]; } } void find(){ root=0; len=strlen(s); for(int i=0;i<len;i++){ int x=s[i]-‘a‘; if(!trie[root][x]){ cout<<"NO"<<endl; return; } root=trie[root][x]; } cout<<"YES"<<endl; return; } int main(){ cin>>n; for(int i=1;i<=n;i++){ scanf("%s",s); if(strlen(s)) insert(); } cin>>m; for(int i=1;i<=m;i++){ scanf("%s",s); if(strlen(s)) find(); } }
标签:长度 ace name 范围 cst namespace 时间 default one
原文地址:http://www.cnblogs.com/cangT-Tlan/p/7401277.html