poj 2945 Find the Clones (map+string,hash思维)

Find the Clones

Time Limit: 5000MS   Memory Limit: 65536K
Total Submissions: 7498   Accepted: 2780

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

题目链接:http://poj.org/problem?id=2945

题目大意:给出一些基因片段,计算相同基因片段的数目,求这些数目出现的次数。

解题思路:map+hash水题,这题我用字典树也写过,参见字典树分类。

代码如下:

#include <cstdio>
#include <iostream>
#include <cstring>
#include <map>
#include <string>
using namespace std;
map <string,int>mp;
const int maxn=20005;
int ans[maxn];
int main(void)
{
	//freopen("in.txt","r",stdin);
	int n,m;
	while(scanf("%d%d",&n,&m)!=EOF&&(n+m))
	{
		int cnt=0;
		memset(ans,0,sizeof(ans));
		for(int i=0;i<=n;i++)
			mp.clear();
		for(int i=0;i<n;i++)
		{
			char s[25];
			scanf("%s",s);
			string a=s;
			ans[mp[a]]--;     //相同基因个数出现次数改变了,原来的个数出现次数减1,改变后的加1
			mp[a]++;
			ans[mp[a]]++;
		}
		for(int i=1;i<=n;i++)
			printf("%d\n",ans[i]);
	}
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-11-08 19:15:03

poj 2945 Find the Clones (map+string,hash思维)的相关文章

poj 2945 Find the Clones trie树的简单应用

题意: 给n个长m的字符串,统计他们的出现频率,输出出现1次的有几种,出现2次的有几种...出现n次的有几种.n<=20000,m<=20. 分析: 也可以用排序,map水的,但还是写个trie树也不麻烦,trie树我觉得就是针对字符串的hash表,效率如果数据大点是比暴力解法高很多的,另外写的时候不小心把index定义成char,n<256完全没问题..调了一个小时也是醉了. 代码: //poj 2945 //sep9 #include <iostream> using n

POJ 2945 Find the Clones Hash

题目大意:给出一些字符串,问其中n个一样的有多少. 思路:看discuss里各种神奇的方法啊,什么map啊,什么Trie啊.这题不是一眼Hash么..难道是我想错了? 任意hash方法将所有字符串hash然后排序,之后统计一下相同的有多少就行了,500+MS水过.. PS:明天就是NOIP我这么水真的好( CODE: #include <cstdio> #include <cstring> #include <iostream> #include <algorit

POJ 2945 Find the Clones (Trie树)

Find the Clones Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 7140   Accepted: 2655 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

POJ 2945 Find the Clones 水

Find the Clones Time Limit: 5000MS   Memory Limit: 65536K Total Submissions: 7524   Accepted: 2789 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

poj 2503 Babelfish(Map、Hash、字典树)

题目链接:http://poj.org/bbs?problem_id=2503 思路分析: 题目数据数据量为10^5, 为查找问题,使用Hash或Map等查找树可以解决,也可以使用字典树查找. 代码(Map实现): #include <iostream> #include <sstream> #include <string> #include <map> using namespace std; int main() { char word[15], fo

poj 2549 --- 传说中的用“桶”防止HASH冲突

http://poj.org/problem?id=2549 维基百科有3Sum算法:https://en.wikipedia.org/wiki/3SUM sort(S); for i=0 to n-3 do a = S[i]; k = i+1; l = n-1; while (k<l) do b = S[k]; c = S[l]; if (a+b+c == 0) then output a, b, c; // Continue search for all triplet combinatio

poj 2774 最长公共子串--字符串hash或者后缀数组或者后缀自动机

http://poj.org/problem?id=2774 想用后缀数组的看这里:http://blog.csdn.net/u011026968/article/details/22801015 本文主要讲下怎么hash去找 开始的时候写的是O(n^2 logn)算法 果断超时...虽然也用了二分的,, 代码如下: //hash+二分 #include <cstdio> #include <cstring> #include <algorithm> #include

poj 2945

accept #include<iostream> #include<cstdlib> #include<string> #include<algorithm> using namespace std; char ss[20005][25]; int num[20005]; int n,m; int cmp(const void * a,const void * b) { int i,ans; char *s1,*s2; s1=(char *)a; s2=(

poj 2153 Rank List(查找,Map)

题目链接:http://poj.org/problem?id=2153 思路分析: 判断Li Ming的成绩排名,需要在所有的数据章查找成绩比其高的人的数目,为查找问题. 查找问题可以使用Hash表,STL中的Map,查找树,或者使用排序与二分查找即可. 代码: #include <iostream> #include <map> #include <string> using namespace std; int main() { int personNum, exa