fork(2) download
  1. #include <cstdio>
  2. #include <string>
  3. #include <iostream>
  4. #include <algorithm>
  5.  
  6.  
  7. using namespace std;
  8. #define MAXN ('z'-'a'+2)
  9. #define VALUE(c) ( (c)-'a' )
  10.  
  11. struct Trie
  12. {
  13. Trie *m[MAXN];
  14. int count;
  15. }trie;
  16.  
  17. int insert(Trie * t, char * w){
  18. if(w[0]=='\0'){
  19. t->count++;
  20. return t->count;
  21. }
  22. if(t->m[VALUE(w[0])] == NULL){
  23. t->m[VALUE(w[0])] =(Trie *) malloc(sizeof(Trie));
  24. }
  25. return insert(t->m[VALUE(w[0])] , w+1);
  26. }
  27.  
  28.  
  29. int main(){
  30.  
  31. int t;
  32. scanf("%d",&t);
  33.  
  34. for (int i = 0; i < t; ++i)
  35. {
  36. char *w = NULL;
  37. w = (char *)malloc(sizeof(char));
  38. scanf("%s",w);
  39. //printf("%s\n", w);
  40. int resp = insert(&trie,w);
  41. if(resp > 1){
  42. printf("%s%d\n", w,resp-1);
  43. }else{
  44. printf("OK\n");
  45. }
  46. }
  47.  
  48.  
  49. return 0;
  50.  
  51. }
Success #stdin #stdout 0s 3476KB
stdin
4
abacaba
acaba
abacaba
acab
stdout
OK
OK
abacaba1
OK