记录编号 |
143548 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOI 2000]单词查找树 |
最终得分 |
100 |
用户昵称 |
天一阁 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.035 s |
提交时间 |
2014-12-15 20:16:15 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define Maxt 61
#define Maxn 610
using namespace std;
struct Node{
Node* ch[Maxt];
int v;
Node(){
v=1;
for(int j=0;j<Maxt;j++) ch[j]=NULL;
}
};
Node* T=new Node;
char str[Maxn];
void insert(Node* &o,int i){
if(i==strlen(str)) o->v=-1;
else{
int id=(int)(str[i]-'A');
if(o->ch[id]==NULL){
o->ch[id]=new Node;
insert(o->ch[id],i+1);
}
else{
o->ch[id]->v++;
insert(o->ch[id],i+1);
}
}
}
int count(Node* &o){
int res=1;
for(int i=0;i<Maxt;i++){
if(o->ch[i]!=NULL) res+=count(o->ch[i]);
}
return res;
}
int main(){
freopen("trie.in","r",stdin);
freopen("trie.out","w",stdout);
while(cin>>str) insert(T,0);
printf("%d\n",count(T));
return 0;
}