比赛 |
noi2000练习1 |
评测结果 |
AAAAAAAAAA |
题目名称 |
单词查找树 |
最终得分 |
100 |
用户昵称 |
烟雨 |
运行时间 |
0.008 s |
代码语言 |
C++ |
内存使用 |
41.43 MiB |
提交时间 |
2018-01-22 19:31:47 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
char words[110];
class node
{public:
int son[27];
}s[500010];
int l,ans;
int Insert()
{
int p=0;
for(int k=0;k<=l;k++)
{
if(s[p].son[words[k]-'A'])
{
p=s[p].son[words[k]-'A'];
}
else
{
p=s[p].son[words[k]-'A']=++ans;
}
}
return 0;
}
int main()
{
freopen ("trie.in","r",stdin);
freopen ("trie.out","w",stdout);
while(scanf("%s",&words)!=EOF)
{
l=strlen(words)-1;
Insert();
}
ans++;
printf("%d\n",ans);
}