CLONE - Find the Clones

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.

Example

Input:
9 6
AAAAAA
ACACAC
GTTTTG
ACACAC
GTTTTG
ACACAC
ACACAC
TCCCCC
TCCCCC
0 0

Output:
1
2
0
1
0
0
0
0
0
Warning: large input/output data, be careful with certain languages

Added by:Fudan University Problem Setters
Date:2008-07-24
Time limit:10s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: C99 ERL JS-RHINO NODEJS PERL6 VB.NET
Resource:ACM Central European Programming Contest, Budapest 2005

hide comments
2013-06-01 10:21:24 mayank goyal
getting WA :(
2013-04-15 23:43:30 Eduardo Nunes
map is awesome :-O no need to sort at all...
2013-04-01 21:19:19 stranger
HashMap + BufferedReader in Java is enough
2013-01-27 16:24:58 #vaidy_MIT#
HINT : If YOu get lot of wrong answers,check whether you have cleared :P

Last edit: 2013-01-27 16:33:11
2012-12-30 19:38:38 saket diwakar
yeaahhhhh....did it in 0.51 sec...:)
2012-12-22 08:42:56 Just Trying
STL rocks .... :)
2011-11-03 17:06:25 ~!(*(@*!@^&
hashing and sorting, O(NlogN), i guess.


Last edit: 2011-11-03 17:06:40
2011-11-03 12:03:45 abualy
yeah O(N logN) complexity
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.