P5832 [USACO19DEC]Where Am I? B

P5832 [USACO19DEC]Where Am I? B,第1张

P5832 [USACO19DEC]Where Am I? B

P5832 [USACO19DEC]Where Am I? B - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

#include
using namespace std;
int n;
string s;
bool check(int len)
{
	for(int i = 0 ; i < n - len + 1 ; i++)//检查len的长度下 ,是否有重复 的字符串 
	{
	string t = s.substr(i, len);//取s的一个子串,从起点i取长度len
	for( int j = i + 1 ; j < n - len + 1 ; j++)
	 if(s.substr(j,len)==t) return false;
}
return true;
}
int main()
{
	cin >> n >> s;
	for( int i = 1; i <= n ; i++) // 枚举长度 
		if(check(i))
		{
			cout << i << endl;
			return 0;
		}
	return 0;	
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5714051.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存