nyoj Human Gene Functions (DP字符串配对) 好题

来源:互联网 发布:矩阵分析英文版 pdf 编辑:程序博客网 时间:2024/04/28 01:59

Human Gene Functions

时间限制:1000 ms  |           内存限制:65535 KB
难度:4
描述
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.
输入
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.
输出
The output should print the similarity of each test case, one per line.
样例输入
2 7 AGTGATG 5 GTTAG 7 AGCTATT 9 AGCTTTAAA
样例输出
1421
//题意:
给你两个给定长度的字符串,让你通过上面的配对表给其配对,要求求出配完对后他们的和的最大值。
//思路:
动态转移方程:dp[i][j]=max(max(dp[i][j-1]+c[' '][b[j]],dp[i-1][j]+c[a[i]][' ']),dp[i-1][j-1]+c[a[i]][b[j]]);
dp[i][j]表示从第一个字符串中取前i个字符与从第二个字符串中取前j个字符配对(不够的补空格)的总和。
知道这个动态转移方程这题就好做了。
具体看代码:
#include<stdio.h>#include<string.h>#include<math.h>#include<algorithm>using namespace std;int dp[110][110];int c[110][110];char a[110];char b[110];int init()//初始赋值 {c['A']['A']=c['C']['C']=c['G']['G']=c['T']['T']=5;c['A']['C']=c['C']['A']=c['A']['T']=c['T']['A']=c['T'][' ']=c[' ']['T']=-1;c['A']['G']=c['G']['A']=c['C']['T']=c['T']['C']=c['G']['T']=c['T']['G']=c['G'][' ']=c[' ']['G']=-2;c['A'][' ']=c[' ']['A']=c['C']['G']=c['G']['C']=-3;c['C'][' ']=c[' ']['C']=-4;}int main(){init();int t,l1,l2,i,j,k;scanf("%d",&t);while(t--){scanf("%d %s",&l1,a+1);scanf("%d %s",&l2,b+1);dp[0][0]=0;for(i=1;i<=l1;i++)dp[i][0]=dp[i-1][0]+c[a[i]][' '];for(i=1;i<=l2;i++)dp[0][i]=dp[0][i-1]+c[' '][b[i]];for(i=1;i<=l1;i++){for(j=1;j<=l2;j++){dp[i][j]=max(max(dp[i][j-1]+c[' '][b[j]],dp[i-1][j]+c[a[i]][' ']),dp[i-1][j-1]+c[a[i]][b[j]]);}}printf("%d\n",dp[l1][l2]);}return 0;}

1 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 dnf剑帝命中率低怎么办 无意中讲话伤害了人怎么办 高中上不下去了怎么办 高三坚持不下去怎么办 word点了不保存怎么办 做了ppt没保存怎么办 中班安全教案迷眼了怎么办 美的空调尘满怎么办 高考报名系统密码忘记怎么办 高考理综8题怎么办 高三了语文很差怎么办 高三了语文成绩差怎么办 供太岁初一忘了怎么办 高一英语100多分怎么办 高一孩子英语差怎么办 高考中题目有错别字怎么办 相亲简单自我介绍后不回我怎么办 初中毕业没考上高中怎么办 幼儿园小朋友经常说脏话幼师怎么办 我不想当组长了怎么办 领导让我做组长怎么办 情人抓住把柄敲诈自己老公怎么办 我太看重朋友了怎么办 初中生下面长硬胡子痒怎么办 孩子不爱与人沟通怎么办 初一初二没学好初三怎么办 打印机提示存储已满怎么办 苹果6内存满了怎么办 手机总显示存储空间不足怎么办 我爱她她不爱我怎么办 孩子爱发脾气·父母怎么办 落枕怎么办简单快速的有效方法 老板评奖时偏把我落下怎么办 手机home键坏了怎么办 庙里求的葫芦丢了怎么办 判了抚养费不给怎么办 百度账号密码忘了怎么办 百度云会员到期后文件怎么办 百度网盘存储空间不足怎么办 网赌一天输14万怎么办 在部队训练伤了怎么办