zoukankan      html  css  js  c++  java
  • POJ 2945 Find the Clones

    Find the Clones
    Time Limit: 5000MS   Memory Limit: 65536K
    Total Submissions: 6365   Accepted: 2375

    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
    题目大意:输入两个数m,n分别代表基因片段的数目和每个基因片段的长度,输出结果为n个数,第i个数代表出现次数为i的基因片段的数量。
    解题方法:字典树加哈希表。
    #include <stdio.h>
    #include <iostream>
    #include <stdlib.h>
    #include <string.h>
    using namespace std;
    
    typedef struct node
    {
        int time;
        bool bfind;
        node *next[4];
        node()
        {
            time = 0;
            bfind = false;
            next[0] = next[1] = next[2] = next[3] = NULL;
        }
    }TreeNode;
    
    int hash_table[20005];
    
    int GetIndex(char ch)
    {
        switch(ch)
        {
        case 'A':
            return 0;
        case 'C':
            return 1;
        case 'G':
            return 2;
        case 'T':
            return 3;
        }
    }
    
    void Insert(TreeNode *pHead, char str[])
    {
        int nLen = strlen(str);
        TreeNode *p = pHead;
        for (int i = 0; i < nLen; i++)
        {
            int index = GetIndex(str[i]);
            if (p->next[index] == NULL)
            {
                p->next[index] = new TreeNode;
            }
            p = p->next[index];
        }
        if (p->time == 0)
        {
            hash_table[++p->time]++;
        }
        else
        {
            hash_table[p->time]--;
            hash_table[++p->time]++;
        }
    }
    
    void DeleteNode(TreeNode *pHead)
    {
        if (pHead != NULL)
        {
            for (int i = 0; i < 4; i++)
            {
                DeleteNode(pHead->next[i]);
            }
        }
        delete pHead;
    }
    
    int main()
    {
        int n, m;
        char temp[25];
        TreeNode *pHead = NULL;
        while(scanf("%d%d", &n, &m) != EOF)
        {
            if (m == 0 && n == 0)
            {
                break;
            }
            pHead = new TreeNode;
            for (int i = 0; i< n; i++)
            {
                scanf("%s", temp);
                Insert(pHead, temp);
            }
            for (int i = 1; i <= n; i++)
            {
                printf("%d
    ", hash_table[i]);
            }
            memset(hash_table, 0, sizeof(hash_table));
            DeleteNode(pHead);
        }
        return 0;
    }
  • 相关阅读:
    去哪网 2014.9.25 笔试题
    关于 Private strand flush not complete
    以太网数据帧相关
    Java根据年份算出所属的生肖。
    DWR常用<init-param>参数
    更新ORACLE数据时遇到锁死情况的处理
    Debug of bash , perl and python
    2013长沙网络赛H题Hypersphere (蛋疼的题目 神似邀请赛A题)
    I.MX6 wm8962 0-001a: DC servo timed out
    I.MX6 U-boot PWM hacking
  • 原文地址:https://www.cnblogs.com/lzmfywz/p/3180107.html
Copyright © 2011-2022 走看看