zoukankan      html  css  js  c++  java
  • poj 1080 -- Human Gene Functions

    Human Gene Functions
     
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 17170   Accepted: 9550

    Description

    It is well known that a human gene can be considered as a sequence, consisting of four nucleotides, which are simply denoted by four letters, A, C, G, and T. Biologists have been interested in identifying human genes and determining their functions, because these can be used to diagnose human diseases and to design new drugs for them. 

    A human gene can be identified through a series of time-consuming biological experiments, often with the help of computer programs. Once a sequence of a gene is obtained, the next job is to determine its function. 
    One of the methods for biologists to use in determining the function of a new gene sequence that they have just identified is to search a database with the new gene as a query. The database to be searched stores many gene sequences and their functions – many researchers have been submitting their genes and functions to the database and the database is freely accessible through the Internet. 

    A database search will return a list of gene sequences from the database that are similar to the query gene. 
    Biologists assume that sequence similarity often implies functional similarity. So, the function of the new gene might be one of the functions that the genes from the list have. To exactly determine which one is the right one another series of biological experiments will be needed. 

    Your job is to make a program that compares two genes and determines their similarity as explained below. Your program may be used as a part of the database search if you can provide an efficient one. 
    Given two genes AGTGATG and GTTAG, how similar are they? One of the methods to measure the similarity 
    of two genes is called alignment. In an alignment, spaces are inserted, if necessary, in appropriate positions of 
    the genes to make them equally long and score the resulting genes according to a scoring matrix. 

    For example, one space is inserted into AGTGATG to result in AGTGAT-G, and three spaces are inserted into GTTAG to result in –GT--TAG. A space is denoted by a minus sign (-). The two genes are now of equal 
    length. These two strings are aligned: 

    AGTGAT-G 
    -GT--TAG 

    In this alignment, there are four matches, namely, G in the second position, T in the third, T in the sixth, and G in the eighth. Each pair of aligned characters is assigned a score according to the following scoring matrix. 

    denotes that a space-space match is not allowed. The score of the alignment above is (-3)+5+5+(-2)+(-3)+5+(-3)+5=9. 

    Of course, many other alignments are possible. One is shown below (a different number of spaces are inserted into different positions): 

    AGTGATG 
    -GTTA-G 

    This alignment gives a score of (-3)+5+5+(-2)+5+(-1) +5=14. So, this one is better than the previous one. As a matter of fact, this one is optimal since no other alignment can have a higher score. So, it is said that the 
    similarity of the two genes is 14.

    Input

    The input consists of T test cases. The number of test cases ) (T is given in the first line of the input file. Each test case consists of two lines: each line contains an integer, the length of a gene, followed by a gene sequence. The length of each gene sequence is at least one and does not exceed 100.

    Output

    The output should print the similarity of each test case, one per line.

    Sample Input

    2 
    7 AGTGATG 
    5 GTTAG 
    7 AGCTATT 
    9 AGCTTTAAA 

    Sample Output

    14
    21 

    题目链接: Human Gene Functions

    思路:简单dp。。推出如下方程:

    ans1 = dp[i-1][j-1] + imap[str1[i-1]][str2[j-1]]; 
    ans2 = dp[i-1][j] + imap[str1[i-1]]['-'];
    ans3 = dp[i][j-1] + imap['-'][str2[j-1]];
    dp[i][j] = max(ans1,ans2,ans3);
    
    
     1 /*======================================================================
     2  *           Author :   kevin
     3  *         Filename :   HumanGeneFunctions.cpp
     4  *       Creat time :   2014-09-22 19:08
     5  *      Description :
     6 ========================================================================*/
     7 #include <iostream>
     8 #include <algorithm>
     9 #include <cstdio>
    10 #include <cstring>
    11 #include <queue>
    12 #include <cmath>
    13 #define clr(a,b) memset(a,b,sizeof(a))
    14 #define M 256
    15 const int MM = 105;
    16 using namespace std;
    17 int imap[M][M];
    18 int dp[MM][MM];
    19 char str1[MM],str2[MM];
    20 void init()
    21 {
    22     imap['A']['A'] = 5; imap['A']['C'] = -1; imap['A']['G'] = -2;
    23     imap['A']['T'] = -1;imap['A']['-'] = -3; imap['C']['A'] = -1;
    24     imap['C']['C'] = 5; imap['C']['G'] = -3; imap['C']['T'] = -2;
    25     imap['C']['-'] = -4;imap['G']['A'] = -2; imap['G']['C'] = -3;
    26     imap['G']['G'] = 5; imap['G']['T'] = -2; imap['G']['-'] = -2;
    27     imap['T']['A'] = -1;imap['T']['C'] = -2; imap['T']['G'] = -2;
    28     imap['T']['T'] = 5; imap['T']['-'] = -1; imap['-']['A'] = -3;
    29     imap['-']['C'] = -4;imap['-']['G'] = -2; imap['-']['T'] = -1;
    30 }
    31 int max(int a,int b,int c)
    32 {
    33     if(a > b){
    34         b = a;
    35     }
    36     return b>c?b:c;
    37 }
    38 int main(int argc,char *argv[])
    39 {
    40     init();
    41     int n;
    42     scanf("%d",&n);
    43     while(n--){
    44         int len1,len2;
    45         scanf("%d",&len1);
    46         scanf("%s",str1);
    47         scanf("%d",&len2);
    48         scanf("%s",str2);
    49         clr(dp,0);
    50         for(int i = 1; i <= len1; i++){
    51             dp[i][0] = dp[i-1][0] + imap[str1[i-1]]['-'];
    52         }
    53         for(int i = 1; i <= len2; i++){
    54             dp[0][i] = dp[0][i-1] + imap['-'][str2[i-1]];
    55         }
    56         for(int i = 1; i <= len1; i++){
    57             for(int j = 1; j <= len2; j++){
    58                 int ans1 = dp[i-1][j-1] + imap[str1[i-1]][str2[j-1]];
    59                 int ans2 = dp[i-1][j] + imap[str1[i-1]]['-'];
    60                 int ans3 = dp[i][j-1] + imap['-'][str2[j-1]];
    61                 dp[i][j] = max(ans1,ans2,ans3);
    62             }
    63         }
    64         printf("%d
    ",dp[len1][len2]);
    65     }
    66     return 0;
    67 }
    View Code


        
  • 相关阅读:
    顺序表和链表优缺点
    指针和引用
    常见操作系统面试题
    网络套接字编程(UDP)
    Windows下的问题
    解决虚拟机选择桥接模式连不上网(CentOs6.5)
    DevOps平台实践
    Prometheus实现k8s集群的服务监控
    Kubernetes集群的日志EFK解决方案
    Helm
  • 原文地址:https://www.cnblogs.com/ubuntu-kevin/p/3992429.html
Copyright © 2011-2022 走看看