标签:
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 1048 Accepted Submission(s): 324
1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cmath> 5 #include <algorithm> 6 #include <string> 7 #include <vector> 8 #include <stack> 9 #include <queue> 10 #include <set> 11 #include <map> 12 #include <iomanip> 13 #include <cstdlib> 14 using namespace std; 15 const int INF=0x5fffffff; 16 const int MS=100005; 17 const double EXP=1e-8; 18 19 struct node 20 { 21 int id; 22 //bool have; 23 node * next[10]; 24 }nodes[MS*10]; //注意这个大小 尽量大一点 25 26 node *root; 27 bool flag; 28 int cnt; 29 30 char text[MS]; 31 char key[100]; 32 bool mark[MS/10]; 33 node * add_node(int c) 34 { 35 node *p=&nodes[c]; 36 for(int i=0;i<10;i++) 37 p->next[i]=NULL; 38 // p->have=false; 39 p->id=-1; 40 return p; 41 } 42 43 void insert(char *str,int no) 44 { 45 node *p=root,*q; 46 int len=strlen(str); 47 for(int i=0;i<len;i++) 48 { 49 int id=str[i]-‘0‘; 50 if(p->next[id]==NULL) 51 { 52 q=add_node(cnt++); 53 p->next[id]=q; 54 } 55 p=p->next[id]; 56 } 57 p->id=no; 58 } 59 void search(char *str) 60 { 61 node *p=root; 62 int len=strlen(str); 63 for(int i=0;i<len;i++) 64 { 65 int id=str[i]-‘0‘; 66 p=p->next[id]; 67 if(p==NULL) 68 return ; 69 if(p->id!=-1&&mark[p->id]==false) 70 { 71 if(!flag) 72 { 73 printf("Found key: [Key No. %d]",p->id); 74 flag=true; 75 mark[p->id]=true; 76 } 77 else 78 { 79 printf(" [Key No. %d]",p->id); 80 mark[p->id]=true; 81 } 82 } 83 } 84 } 85 86 int main() 87 { 88 int n,m,i,j,k=0; 89 scanf("%d %d",&n,&m); 90 char tstr[MS/100]; 91 flag=false; 92 memset(mark,false,sizeof(mark)); 93 cnt=0; 94 root=add_node(cnt++); 95 for(i=0;i<n;i++) 96 { 97 scanf("%s",tstr); 98 int len=strlen(tstr); //用strcat更好。 99 for(j=0;j<len;j++) 100 text[k++]=tstr[j]; 101 } 102 text[k]=‘\0‘; 103 //getchar(); //可以加也可以不加,因为scanf()可以跳过换行符 104 for(i=0;i<m;i++) 105 { 106 scanf("%s%s%s%s",tstr,tstr,tstr,key); 107 insert(key,i+1); 108 } 109 for(i=0;i<k-4;i++) 110 { 111 search(text+i); 112 } 113 if(!flag) 114 printf("No key can be found !\n"); 115 else 116 printf("\n"); 117 return 0; 118 }
标签:
原文地址:http://www.cnblogs.com/767355675hutaishi/p/4304651.html