POJ 1458解题报告

水题。求最长公共子串。典型的动态规划题。不过还是有注意的地方,比如数组下标为负的处理。我用的是加判断特殊处理,也见到多存一行(一列)的方法。

刚开始用cin.eof()结果一直WA,按照poj discuss里面讨论的cin>>str1>>str2的方法过了。还没弄清这两者的区别。

#include <iostream>
#include <string>
using namespace std;

const int N = 201;
int len[N][N];
int commonseq(const string &str1, const string &str2)
{
	/*
	for(int i = 0; i < str2.size(); ++i)
	{
		len[0][i] = (str1[0] == str2[i])? 1 : 0;
	}
	for(int i = 0; i < str1.size(); ++i)
	{
		len[i][0] = (str1[i] == str2[0])? 1 : 0;
	}
	*/
	for(int i = 0; i < str1.size(); ++i)
	{
		for(int j = 0; j < str2.size(); ++j)
		{
			if(str1[i] == str2[j])
			{
				if(i - 1 < 0 || j - 1 < 0)
				{
					len[i][j] = 1;
				}
				else
				{
					len[i][j] = len[i - 1][j - 1] + 1;
				}
			}
			else
			{
				if(i - 1 < 0)
				{
					len[i][j] = len[i][j - 1];
				}
				else if(j - 1 < 0)
				{
					len[i][j] = len[i - 1][j];
				}
				else
				{
					len[i][j] = max(len[i - 1][j], len[i][j - 1]);
				}
			}
		}
	}
	return len[str1.size() - 1][str2.size() - 1];
}

int main()
{
	string str1, str2;
	while(cin>>str1>>str2)
	{
		//cin>>str1>>str2;
		cout<<commonseq(str1, str2)<<endl;
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值