ZOJ-1374

19 篇文章 0 订阅

找N个字符串的最长连续子串,这里我是用暴力枚举水过的。。好土

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<set>

using namespace std;

namespace
{
	bool cmp(const string &s1, const string &s2)
	{
		return s1.size() < s2.size();
	}

	void put(const string &s, set<string> &S)
	{
		for (size_t i = 0; i < s.size(); i++)
			for (size_t len = 1; len + i <= s.size(); len++)
				S.insert(s.substr(i, len));
	}
}

int main()
{
	int t;
	cin >> t;
	vector<string> V;
	set<string> S;
	while (t--)
	{
		int n;
		cin >> n;
		V.clear();
		string s;
		for (int i = 0; i < n; i++)
		{
			cin >> s;
			V.push_back(s);
		}
		sort(V.begin(), V.end(), cmp);
		S.clear();
		put(V[0], S);
		reverse(V[0].begin(), V[0].end());
		put(V[0], S);

		size_t max = 0;
		for (set<string>::iterator it = S.begin(); it != S.end(); it++)
		{
			bool find = true;
			for (size_t i = 1; i < V.size(); i++)
			{
				if (V[i].find(*it) == string::npos)
				{
					reverse(V[i].begin(), V[i].end());
					if (V[i].find(*it) == string::npos)
					{
						find = false;
						break;
					}
				}
			}
			if (find && (*it).size() > max)
				max = (*it).size();
		}
		cout << max << endl;
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值