UVA-10192

   日期:2020-09-06     浏览:98    评论:0    
核心提示:题意: 题目说了一大堆,其实就是求最长公共子序列。解法: 仿照《生物信息学》中的序列比对问题*(感兴趣的可以去了解了解)。#include #include #include #include using namespace std;int main(){ string a, b; int DP[105][105], c...

题意:

          题目说了一大堆,其实就是求最长公共子序列。

解法:

         仿照《生物信息学》中的序列比对问题(感兴趣的话可以去了解了解)。

#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
using namespace std;
int main()
{
	string a, b; int DP[105][105], caseN = 0;
	while (getline(cin, a), a[0] != '#')
	{
		getline(cin, b);   memset(DP, 0, sizeof(DP));
		for (int i = 1; i <= a.size(); i++)for (int j = 1; j <= b.size(); j++)
			if (a[i-1] == b[j-1]) DP[i][j] += DP[i - 1][j - 1] + 1;
			else DP[i][j] = max(DP[i - 1][j], DP[i][j - 1]);
		cout << "Case #" << ++caseN << ": you can visit at most "
			 << DP[a.size()][b.size()] << " cities." << endl;
	}
	return 0;
}

 

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服