Human Gene Functions Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 17805 Accepted: 9917 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…
Common Subsequence POJ-1458 //最长公共子序列问题 #include<iostream> #include<algorithm> #include<cstdio> #include<cstring> #include<string> using namespace std; string a,b; int dp[1003][1003]; int main(){ while(cin>>a>>b){…