2017年校招全国统一模拟笔试(第五场)偶串

如果一个字符串由两个相同字符串连接而成,就称这个字符串是偶串。例如”xyzxyz”和”aaaaaa”是偶串,但是”ababab”和”xyzxy”却不是。 

牛牛现在给你一个只包含小写字母的偶串s,你可以从字符串s的末尾删除1和或者多个字符,保证删除之后的字符串还是一个偶串,牛牛想知道删除之后得到最长偶串长度是多少。

输入描述: 
输入包括一个字符串s,字符串长度length(2 ≤ length ≤ 200),保证s是一个偶串且由小写字母构成

输出描述: 
输出一个整数,表示删除之后能得到的最长偶串长度是多少。保证测试数据有非零解

输入例子1:

abaababaab

输出例子1:

6


#include 
#include 
using namespace std;


int main()
{
	string str;
	cin >> str;
	str.assign(str, 0, str.size() - 1);
	int max = 0;
	int end = str.find(str[0], 1);
	while (end != -1)
	{
		string iter = str.substr(0, end);
		if (str.compare(end, end, iter) == 0)
		{
			max = max < (end * 2) ? (end * 2) : max;
		}
		end = str.find(str[0], end + 1);
	}
	cout << max << endl;
	system("pause");
}


 
   


你可能感兴趣的:(2017年校招全国统一模拟笔试(第五场)偶串)