Find the Clones

Time Limit: 5000MS Memory Limit: 65536K

Total Submissions: 7704 Accepted: 2879

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' orT’.

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, and0’ 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.

题意:给出x个字符串,问你i个(i<=i<=x)相同字符串的个数,然后输出第i行代表有i个相同字符串的个数。

思路: 找的trie树题,自然就是trie树啦。好像别人有直接strcmp+sort+O(n)扫一遍过的,有用map过的,还有用hash的(Hash好像很有用的样子)。

第一次提交,,,

  1. #include <cstdio>
  2. #include <cstring>
  3. using namespace std;
  4. int x,y;
  5. int a[20005];
  6. struct trie
  7. {
  8. int cnt;
  9. trie *next[26];
  10. };
  11. trie *root=new trie;
  12. void insert(char ch[])
  13. {
  14. trie *p=root,*newtrie;
  15. for(int i=0;ch[i]!='\0';i++)
  16. {
  17. if(p->next[ch[i]-'A']==0)
  18. {
  19. newtrie=new trie;
  20. for(int j=0;j<26;j++) newtrie->next[j]=NULL;
  21. newtrie->cnt=0;
  22. p->next[ch[i]-'A']=newtrie;
  23. p=newtrie;
  24. }
  25. else
  26. p=p->next[ch[i]-'A'];
  27. }
  28. p->cnt++;
  29. a[p->cnt]++;
  30. a[p->cnt-1]--;
  31. }
  32. int main()
  33. {
  34. char ch[29];
  35. while(scanf("%d%d",&x,&y)&&x)
  36. {
  37. for(int i=0;i<26;i++) root->next[i]=NULL;
  38. root->cnt=0;
  39. for(int i=1;i<=x;i++)
  40. {
  41. scanf("%s",ch);
  42. insert(ch);
  43. }
  44. for(int i=1;i<=x;i++)
  45. printf("%d\n",a[i]);
  46. for(int i=0;i<=x;i++)a[i]=0;
  47. }
  48. }



分析了一下原因,没有拆树导致用过了废了的内存没有回收

改了五分钟以后,第二版提交。

  1. #include <cstdio>
  2. #include <cstring>
  3. #include <cstdlib>
  4. using namespace std;
  5. int x,y;
  6. int a[20005];
  7. struct trie
  8. {
  9. int cnt;
  10. trie *next[26];
  11. };
  12. trie *root=new trie;
  13. void insert(char ch[])
  14. {
  15. trie *p=root,*newtrie;
  16. for(int i=0;ch[i]!='\0';i++)
  17. {
  18. if(p->next[ch[i]-'A']==0)
  19. {
  20. newtrie=new trie;
  21. for(int j=0;j<26;j++) newtrie->next[j]=NULL;
  22. newtrie->cnt=0;
  23. p->next[ch[i]-'A']=newtrie;
  24. p=newtrie;
  25. }
  26. else
  27. p=p->next[ch[i]-'A'];
  28. }
  29. p->cnt++;
  30. a[p->cnt]++;
  31. a[p->cnt-1]--;
  32. }
  33. void dfs(trie *p)
  34. {
  35. for(int i=0;i<26;i++)
  36. {
  37. if(p->next[i]!=NULL) dfs(p->next[i]);
  38. free(p->next[i]);
  39. }
  40. }
  41. int main()
  42. {
  43. char ch[29];
  44. while(scanf("%d%d",&x,&y)&&x)
  45. {
  46. for(int i=0;i<26;i++) root->next[i]=NULL;
  47. root->cnt=0;
  48. for(int i=1;i<=x;i++)
  49. {
  50. scanf("%s",ch);
  51. insert(ch);
  52. }
  53. for(int i=1;i<=x;i++)
  54. printf("%d\n",a[i]);
  55. for(int i=0;i<=x;i++)a[i]=0;
  56. dfs(root);
  57. }
  58. }

还是很慢啊! 4.5s,19216K的memory。

POJ 2945 trie树的更多相关文章

  1. poj 2945 trie树统计字符串出现次数

    用记录附加信息的val数组记录次数即可. trie的原理:每个可能出现的字目给一个编号c,那么整个树就是一个c叉树 ch[u][c]表示 节点u走c边过去之后的节点 PS:trie树还有种动态写法,使 ...

  2. POJ 3630 trie树

    Phone List Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 26559 Accepted: 8000 Descripti ...

  3. POJ 2513 trie树+并查集判断无向图的欧拉路

    生无可恋 查RE查了一个多小时.. 原因是我N define的是250500 应该是500500!!!!!!!!! 身败名裂,已无颜面对众人.. 吐槽完了 我们来说思路... 思路: 判有向图能否形成 ...

  4. hdu 1671&& poj 3630 (trie 树应用)

    Phone List Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 25280   Accepted: 7678 Descr ...

  5. poj 2513 Colored Sticks (trie 树)

    链接:poj 2513 题意:给定一些木棒.木棒两端都涂上颜色,不同木棒相接的一边必须是 同样的颜色.求能否将木棒首尾相接.连成一条直线. 分析:能够用欧拉路的思想来解,将木棒的每一端都看成一个结点 ...

  6. POJ 3630 Phone List(trie树的简单应用)

    题目链接:http://poj.org/problem?id=3630 题意:给你多个字符串,如果其中任意两个字符串满足一个是另一个的前缀,那么输出NO,否则输出YES 思路:简单的trie树应用,插 ...

  7. POJ 3764 The xor-longest Path trie树解决位运算贪心

    http://poj.org/problem?id=3764 题意 :  一颗树,每个边有个值,在树上找一条简单路径,使得这条路径上的边权异或值最大 先找到所有节点到一点的距离 , 显然dis( x ...

  8. [POJ] #1002# 487-3279 : 桶排序/字典树(Trie树)/快速排序

    一. 题目 487-3279 Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 274040   Accepted: 48891 ...

  9. [ACM] POJ 2418 Hardwood Species (Trie树或map)

    Hardwood Species Time Limit: 10000MS   Memory Limit: 65536K Total Submissions: 17986   Accepted: 713 ...

随机推荐

  1. openstack——neutron网络服务

    一.neutron 介绍:   Neutron 概述 传统的网络管理方式很大程度上依赖于管理员手工配置和维护各种网络硬件设备:而云环境下的网络已经变得非常复杂,特别是在多租户场景里,用户随时都可能需要 ...

  2. copy.c实现

    #cat copy.c #include <stdio.h> #include <stdlib.h> #include <string.h> int copyFil ...

  3. 新手入门学习angular.js的心得体会

    看了一天的angular.js,只要记住这是关于双向数据绑定 和单向数据绑定就可以,看看开发文档,短时间内还是可以直接入手的,看个人理解能力(我是小白). 这几天开始着手学习angularjs的有关知 ...

  4. 阅读《JavaScript设计模式》第二章心得

    面向对象编程 面向对象编程就是将你的需求抽象成一个对象.然后针对这个对象分析其特征(属性)与动作(方法).这个对象我们称之为类.面向对象编程思想其中的一个特点就是封装. 1.私有属性.私有方法.特权方 ...

  5. POJ-2135-Farm Tour(最大费用最小流)模板

    Farm Tour POJ - 2135 When FJ's friends visit him on the farm, he likes to show them around. His farm ...

  6. Git 基础教程 之 多人协作

           多人协作时,从远程克隆时,默认情况下,只能看到master分支 git checkout -b dev origin/dev 创建远程origin的dev分支到本地 git branch ...

  7. mac上常用的命令

    平时会经常遇到的问题做一个总结

  8. 【codeforces 508A】Pasha and Pixels

    [题目链接]:http://codeforces.com/contest/508/problem/A [题意] 让你在一个n*m的方格上给方格染色; 顺序给出染色的k个格子 如果在某一时刻 有一个2* ...

  9. 清北学堂模拟赛d4t1 a

    分析:大模拟,没什么好说的.我在考场上犯了一个超级低级的错误:while (scanf("%s",s + 1)),导致了死循环,血的教训啊,以后要记住了. /* 1.没有发生改变, ...

  10. hdu 1532&&poj1273 基础最大流

    #include<stdio.h> #include<string.h> #include<queue> #include<iostream> usin ...