zoukankan      html  css  js  c++  java
  • Find the Clones Trie Tree

    Time Limit: 5000MS   Memory Limit: 65536K
    Total Submissions: 8306   Accepted: 3130

    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. 
    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #include<cstring>
    #include<sstream>
    #include<algorithm>
    #include<queue>
    #include<deque>
    #include<vector>
    #include<cmath>
    #include<map>
    #include<stack>
    #include<set>
    #include<fstream>
    #include<memory>
    #include<list>
    #include<string>
    using namespace std;
    typedef long long LL;
    typedef unsigned long long ULL;
    #define MAXN  20003
    #define L 20 
    #define INF 1000000009
    #define eps 0.00000001
    /*
    给出多个DNA序列 要求有i份copy的DNA序列数
    先插入结点 计算个数
    最后搜一下
    */
    int n, m;
    int cnt[MAXN];
    char s[L];
    typedef struct Treenode
    {
        int cnt;
        struct Treenode* Next[4];
    }*Tree;
    Tree Newnode()
    {
        Tree T = (Tree)malloc(sizeof(Treenode));
        memset(T->Next, NULL, sizeof(T->Next));
        T->cnt = -1;
        return T;
    }
    void Insert(char s[], Tree T)
    {
        if (!T)
            T = Newnode();
        int p = 0,k;
        while (s[p])
        {
            if (s[p] == 'A') k = 0;
            else if (s[p] == 'C') k = 1;
            else if (s[p] == 'G') k = 2;
            else k = 3;
            if (!T->Next[k])
            {
                T->Next[k] = Newnode();
            }
            T = T->Next[k];
            p++;
        }
        if (T->cnt == -1)
            T->cnt = 1;
        else
            T->cnt++;
    }
    void dfs(Tree T)
    {
        if (!T) return;
        if (T->cnt != -1)
        {
            cnt[T->cnt]++;
            return;
        }
        for (int i = 0; i < 4; i++)
                dfs(T->Next[i]);
    }
    int main()
    {
        while (scanf("%d%d", &n, &m), n + m)
        {
            Tree T = Newnode();
            memset(cnt, 0, sizeof(cnt));
            for (int i = 0; i < n; i++)
            {
                scanf("%s", s);
                Insert(s, T);
            }
            dfs(T);
            for (int i = 0; i < n; i++)
            {
                printf("%d
    ", cnt[i + 1]);
            }
        }
        return 0;
    }
  • 相关阅读:
    使用beanUtils操纵javabean
    反射
    JDK5.0新特性(静态导入、自动装箱/拆箱、增强for循环、可变参数、枚举、泛形)
    Junit测试框架
    Eclipse常用快捷键
    Linux最全基础指令
    log file sync等待事件
    数据库要不要部署在docker容器内?
    MySQL启动报错-The server quit without updating PID file[FAILED]mysql/mysql.pid).
    MySQL数据库启动异常-[ERROR] [MY-011971]
  • 原文地址:https://www.cnblogs.com/joeylee97/p/6851594.html
Copyright © 2011-2022 走看看