LeetCode--696. Count Binary Substrings

Give a string s, count the number of non-empty (contiguous) substrings that have the same number of 0's and 1's, and all the 0's and all the 1's in these substrings are grouped consecutively.

Substrings that occur multiple times are counted the number of times they occur.

Example 1:

Input: "00110011"
Output: 6
Explanation: There are 6 substrings that have equal number of consecutive 1's and 0's: "0011", "01", "1100", "10", "0011", and "01".

Notice that some of these substrings repeat and are counted the number of times they occur.

Also, "00110011" is not a valid substring because all the 0's (and 1's) are not grouped together.

Example 2:

Input: "10101"
Output: 4
Explanation: There are 4 substrings: "10", "01", "10", "01" that have equal number of consecutive 1's and 0's.

Note:

s.length will be between 1 and 50,000. s will only consist of "0" or "1" characters.


题意:给定一串序列,其中只包含0和1,让你统计其中包含0和1的特定序列(序列中的0和1必须是连续的)一共有多少个,可以重复统计如序列0011,满足条件的序列有01和0011.

思路1:

1.使用变量k遍历序列,然后使用双指针i,j来判断当前序列是否满足条件,若满足计数器cnt加一,然后--i,++j,继续判断,直到倒数第二个为止。

2.注意每轮第一组符合条件的序列特殊处理。

参考代码:

class Solution {
public:
    int countBinarySubstrings(string s) {
        int cnt=0,k=0,i,j,n=s.size();
        for(;k<n-1;++k){
            if(s[k]==s[k+1]) continue;
            i=k;
            j=k+1;
            while(i>=0&&j<n){
                if(i+1!=j&&(s[i]!=s[i+1]||s[j]!=s[j-1]))    //第一组特殊处理,判断i+1!=j
                    break;
                cnt++;
                --i;++j;
            }
        }
        return cnt;
    }
};

思路2:

1.首先我们统计给定序列中连续0或连续1的个数,例如001110001111,个数分别为2,3,3,4;

2.每次在0和1的分界处,对应子序列个数为0和1中较少的那一个的个数,如00111,对应子序列个数为min(2,3)=2。

参考代码:

class Solution {
public:
    int countBinarySubstrings(string s) {
        int cur=1,pre=0,res=0;
        for(int i=1;i<s.size();++i){
            if(s[i]==s[i-1]) ++cur;
            else{
                res+=min(pre,cur);
                pre=cur;
                cur=1;
            }
        }
        return res+min(pre,cur);
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值