题目
给定一个字符串 s,计算具有相同数量0和1的非空(连续)子字符串的数量,并且这些子字符串中的所有0和所有1都是组合在一起的。
重复出现的子串要计算它们出现的次数。
示例1
输入:
“00110011”
输出:
6
解释
有6个子串具有相同数量的连续1和0:“0011”,“01”,“1100”,“10”,“0011” 和 “01”。
请注意,一些重复出现的子串要计算它们出现的次数。
另外,“00110011”不是有效的子串,因为所有的0(和1)没有组合在一起。
示例2
输入:
“10101”
输出:
4
解释
有4个子串:“10”,“01”,“10”,“01”,它们具有相同数量的连续1和0。
解法
- 有几个0和几个1,这些都是组合一起的
- 每次组合取个数小的加一起
代码
#include <stdio.h>
#include <vector>
#include <iostream>
#include <math.h>
#include <algorithm>
using namespace std;
class Solution {
public:
int countBinarySubstrings(string s) {
int index =0;
int n = s.size();
int tmp = 0;
int ans = 0;
while(index < n){
char ch = s[index];
int c = 0;
while(index < n && ch ==s[index]){
index++;
c++;
}
ans += min(c,tmp);
tmp = c;
}
return ans;
}
};
int main()
{
string str = "00110011";
Solution s;
cout<<s.countBinarySubstrings(str);
}
今天也是爱zz的一天哦!