如果一个01串任意两个相邻位置的字符都是不一样的,我们就叫这个01串为交错01串。例如: “1”,”10101”,”0101010”都是交错01串。
小易现在有一个01串s,小易想找出一个最长的连续子串,并且这个子串是一个交错01串。小易需要你帮帮忙求出最长的这样的子串的长度是多少。
输入描述:
输入包括字符串s,s的长度length(1 ≤ length ≤ 50),字符串中只包含’0’和’1’
输出描述:
输出一个整数,表示最长的满足要求的子串长度。
输入例子1:
111101111
输出例子1:
3
#include <bits/stdc++.h>
using namespace std;
int main(){
string s;
while(cin>>s){
if(s.empty()==true) break;
int ans = 1, cnt = 1;
for(int i = 1; i < s.size(); i++) {
if(s[i] != s[i - 1]) {
cnt++;
} else {
cnt = 1;
}
ans = max(ans, cnt);
}
cout << ans << endl;
}
return 0;
}
1268

被折叠的 条评论
为什么被折叠?



