poj 2945 Find the Clones

Find the Clones
Time Limit: 5000MS   Memory Limit: 65536K
Total Submissions: 6265   Accepted: 2328

Description

Doubleville, a small town in Texas, was attacked by the aliens. They have abducted some of the residents and taken them to the a spaceship orbiting around earth. After some (quite unpleasant) human experiments, the aliens cloned the victims, and released multiple copies of them back in Doubleville. So now it might happen that there are 6 identical person named Hugh F. Bumblebee: the original person and its 5 copies. The Federal Bureau of Unauthorized Cloning (FBUC) charged you with the task of determining how many copies were made from each person. To help you in your task, FBUC have collected a DNA sample from each person. All copies of the same person have the same DNA sequence, and different people have different sequences (we know that there are no identical twins in the town, this is not an issue).

Input

The input contains several blocks of test cases. Each case begins with a line containing two integers: the number 1 ≤ n ≤ 20000 people, and the length 1 ≤ m ≤ 20 of the DNA sequences. The next n lines contain the DNA sequences: each line contains a sequence of m characters, where each character is either `A', `C', `G' or `T'. 

The input is terminated by a block with n = m = 0 .

Output

For each test case, you have to output n lines, each line containing a single integer. The first line contains the number of different people that were not copied. The second line contains the number of people that were copied only once (i.e., there are two identical copies for each such person.) The third line contains the number of people that are present in three identical copies, and so on: the i -th line contains the number of persons that are present in i identical copies. For example, if there are 11 samples, one of them is from John Smith, and all the others are from copies of Joe Foobar, then you have to print `1' in the first andthe tenth lines, and `0' in all the other lines.

Sample Input

9 6
AAAAAA
ACACAC
GTTTTG
ACACAC
GTTTTG
ACACAC
ACACAC
TCCCCC
TCCCCC
0 0

Sample Output

1
2
0
1
0
0
0
0
0

Hint

Huge input file, 'scanf' recommended to avoid TLE.
 
用字典树做的,方法比较笨。
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstdlib>
 4 #include <cstring>
 5 
 6 using namespace std;
 7 const int sonnum = 26, base = 'A';
 8 char a[20000+10][25];
 9 int b[20000+10];
10 struct Trie
11 {
12   int num; bool terminal; int endsum; 
13   Trie *son[sonnum];
14 };
15 Trie *NewTrie()
16 {
17   Trie *temp = new Trie;
18   temp->num = 1; temp->terminal = false; temp->endsum = 0;
19   for (int i = 0; i < sonnum; ++i) temp->son[i] = NULL;
20   return temp;
21 }
22 void Insert(Trie *pnt, char *s, int len)
23 {
24   Trie *temp = pnt;
25   for (int i = 0; i < len; ++i)
26   {
27     if (temp->son[s[i]-base] == NULL) temp->son[s[i]-base] = NewTrie();
28     else temp->son[s[i]-base]->num++;
29     temp = temp->son[s[i]-base];
30   }
31   temp->endsum++; temp->terminal = true;
32 }
33 void Find(Trie *pnt, char *s, int len)
34 {
35   Trie *temp = pnt;
36   for (int i = 0; i < len; ++i)
37     temp = temp->son[s[i]-base];
38   if (temp->endsum == 1) b[0]++;
39   else 
40   {
41     if (temp->terminal == true)
42     {
43       b[temp->endsum-1]++;
44       temp->terminal = false;
45     }
46   }
47 }
48 void Delete(Trie *pnt)
49 {
50   if (pnt != NULL)
51   {
52     for (int i = 0; i < sonnum; ++i) if (pnt->son[i] != NULL) Delete(pnt->son[i]);
53     delete pnt;
54     pnt = NULL;
55   }
56 }
57 int main(void)
58 {
59   int n, m;
60 #ifndef ONLINE_JUDGE
61   freopen("poj2956.in", "r", stdin);
62 #endif
63   while (1)
64   {
65     Trie *pnt = NewTrie();
66     memset(b, 0, sizeof(b));
67     scanf("%d%d", &n, &m);
68     {
69       for (int i = 0; i < n; ++i) 
70       {
71         scanf("%s", a[i]);
72         Insert(pnt, a[i], m);
73       }
74     }
75     for (int i = 0; i < n; ++i) Find(pnt, a[i], m);
76     for (int i = 0; i < n; ++i) printf("%d\n", b[i]);
77     Delete(pnt);
78     if (!n) break;
79     }
80 
81   return 0;
82 }

没有优化……应该速度可以更快一点儿。

原文地址:https://www.cnblogs.com/liuxueyang/p/2936059.html