您的位置:首页 > 其它

POJ 1080 Human Gene Functions[LCS]

2012-03-16 21:02 344 查看
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.
View Code

#include<stdio.h>
#include<string.h>
int max2(int a,int b)
{
return a>b?a:b;
}
int max(int a,int b,int c)
{
return max2(a,max2(b,c));
}
int main()
{
int c[250][250];
char a[102],b[102];
int d[102][102];
int i,j,l1,l2,t,tmp1,tmp2,tmp3;
c['A']['A']=c['C']['C']=c['G']['G']=c['T']['T']=c['-']['-']=5;
c['A']['C']=c['C']['A']=-1;
c['A']['G']=c['G']['A']=-2;
c['A']['T']=c['T']['A']=-1;
c['A']['-']=c['-']['A']=-3;
c['C']['G']=c['G']['C']=-3;
c['C']['T']=c['T']['C']=-2;
c['C']['-']=c['-']['C']=-4;
c['G']['T']=c['T']['G']=-2;
c['G']['-']=c['-']['G']=-2;
c['T']['-']=c['-']['T']=-1;
scanf("%d",&t);
while(t--)
{
memset(d,0,sizeof(d));
scanf("%d",&l1);
getchar();
for(i=1;i<=l1;i++)
scanf("%c",&a[i]);
scanf("%d",&l2);
getchar();
for(i=1;i<=l2;i++)
scanf("%c",&b[i]);
for(i=1;i<=l2;i++)
d[0][i]=d[0][i-1]+c['-'][b[i]];
for(i=1;i<=l1;i++)
d[i][0]=d[i-1][0]+c[a[i]]['-'];
for(i=1;i<=l1;i++)
for(j=1;j<=l2;j++)
d[i][j]=max(d[i-1][j-1]+c[a[i]][b[j]],d[i-1][j]+c[a[i]]['-'],d[i][j-1]+c['-'][b[j]]);
printf("%d\n",d[l1][l2]);
}
return 0;
}



                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: