zoukankan      html  css  js  c++  java
  • 杭电20题 Human Gene Functions

    Problem 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

    题意:匹配是求最大的匹配和;可以加入空格;

    思路:思路实际上是求两个字符串的最大公共子序列的思路;

    AC代码:

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<string>
     5 #include<map>
     6 
     7 using namespace std;
     8 
     9 int max(int a,int b,int c)
    10 {
    11     return a>(b>c?b:c)?a:(b>c?b:c);
    12 }
    13 
    14 int main()
    15 {
    16     freopen("1.txt","r",stdin);
    17     int t;
    18     string str1,str2;
    19     int i,j;
    20     int dp[110][110]={0};
    21     int s[5][5]={
    22     {5,-1,-2,-1,-3},
    23     {-1,5,-3,-2,-4},
    24     {-2,-3,5,-2,-2},
    25     {-1,-2,-2,5,-1},
    26     {-3,-4,-2,-1,0}};
    27     map<char,int> k;
    28     k['A']=0;
    29     k['C']=1;
    30     k['G']=2;
    31     k['T']=3;
    32     k['-']=4;
    33     cout<<k['A']<<endl<<k['C']<<endl<<k['G']<<endl<<k['T']<<endl<<k['-']<<endl;
    34     cin>>t;
    35     int n1,n2;
    36     while(t)
    37     {
    38         memset(dp,0,sizeof(dp));
    39         cin>>n1>>str1>>n2>>str2;
    40         for(i=1;i<=n1;i++)
    41         {
    42             dp[i][0]=dp[i-1][0]+s[k[str1[i-1]]][k['-']];
    43         }
    44         for(i=1;i<=n2;i++)
    45         {
    46             dp[0][i]=dp[0][i-1]+s[k['-']][k[str2[i-1]]];
    47         }
    48         for(i=1;i<=n1;i++)
    49             for(j=1;j<=n2;j++)
    50             dp[i][j]=max(dp[i-1][j-1]+s[k[str1[i-1]]][k[str2[j-1]]],dp[i][j-1]+s[k['-']][k[str2[j-1]]],dp[i-1][j]+s[k[str1[i-1]]][k['-']]);
    51         t--;
    52         cout<<dp[n1][n2]<<endl;
    53     }
    54     return 0;
    55 }
    View Code
  • 相关阅读:
    uu 模块
    程序员都是好男人
    TCP基础知识
    最全 git 命令总结
    iOS 添加UIWindow不显示问题解决
    解决CFBundleIdentifier", Does Not Exist
    Mac 系统OS X>=10.9,怎么把默认的python切换成3.7或者更高
    OC算法练习-Hash算法
    设计模式架构模式
    runtime相关知识
  • 原文地址:https://www.cnblogs.com/zhangchengbing/p/3247501.html
Copyright © 2011-2022 走看看