Find the Clones
Time Limit: 5000MS   Memory Limit: 65536K
Total Submissions: 8490   Accepted: 3210

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. 

Source

大致题意:求1到n中有i个相同的字符串有多少种.
分析:字符串很多,直接hash或者map可能会爆掉,但是每个字符串长度很小,可以用trie,最后统计结尾标记的个数即可.
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm> using namespace std; int n, len, tot, ans[];
char s[]; struct node
{
int tr[];
int end;
void clear()
{
memset(tr, , sizeof(tr));
end = ;
}
}e[]; void insert(char *ss)
{
int u = ;
for (int i = ; i <= len; i++)
{
if (!e[u].tr[ss[i] - 'A'])
e[u].tr[ss[i] - 'A'] = ++tot;
u = e[u].tr[ss[i] - 'A'];
}
e[u].end++;
} int main()
{
while (scanf("%d%d", &n, &len) && (n || len))
{
memset(ans, , sizeof(ans));
for (int i = ; i <= tot; i++)
e[i].clear();
tot = ;
for (int i = ; i <= n; i++)
{
scanf("%s", s + );
insert(s);
}
for (int i = ; i <= tot; i++)
ans[e[i].end]++;
for (int i = ; i <= n; i++)
printf("%d\n", ans[i]);
} return ;
}

最新文章

  1. ubuntu自动执行
  2. SharePoint 2013 在母版页中插入WebPart
  3. Ext 项目随笔
  4. Solr与Tomcat的整合
  5. Unity3D-RPG项目实战(1):发动机的特殊文件夹
  6. Linux centos7环境下安装MySQL的步骤详解
  7. Linux下Modules的概念及使用详解[转贴]
  8. 存出和载入Docker镜像
  9. Kotlin Native
  10. A1116. Come on! Let&#39;s C
  11. copy unicode HTML to clipboard
  12. ActiveMQ漏洞利用方法总结
  13. js sendBeacon
  14. Java图形化界面设计——布局管理器之GridBagLayout
  15. ip获取所在城市名称等信息接口,及函数
  16. Linux安装SQLite轻量级数据库
  17. Windows用WinDbg分析蓝屏dump文件查找原因(转)
  18. SVN专题(Visual SVN Server + TortoiseSVN + Visual SVN)
  19. js 联动实现日期选择,一般用作生日
  20. java web 打水印

热门文章

  1. 面向 AWS 专家的 Azure 云服务介绍
  2. 洛谷 P1309 瑞士轮
  3. App Store上的开源应用汇总
  4. CAD交互绘制块引用对象(网页版)
  5. java 去掉html/style/css等标签
  6. C-基础:详解sizeof和strlen,以及strstr
  7. 洛谷 p1141 01迷宫题解
  8. 关于js作用域问题详解
  9. [LUOGU] P2593 [ZJOI2006]超级麻将
  10. solr 单机模式搭建