文本字符串 二进制字符串_二进制字符串中零和一的最大差

文本字符串 二进制字符串

Problem statement:

问题陈述:

Given a binary string of 0s and 1s. Find the maximum difference of number of 0s and number of 1s (number of 0s – number of 1s) in substrings of the string.

给定二进制字符串0和1。 在字符串的子字符串中找到数字0和数字1(数字0 –数字1)的最大差值。

Input:
Input is a string str

Output:
For each test case, 
print the maximum difference. 
If there is no 0 in the entire string, print "-1". 

Explanation of Example:

示例说明:

Input:
1100010001
Output:
5

Explanation:
The substring to be considered will be "0001000" 
where number of 0's are 6 and number of 1's are 1

So difference is 5 and it is maximum. 
For any other substring the difference is less than 5

Input:
111
Output:
-1

Explanation:
Since, all the characters of the string is '1' 
there is no '0'. Hence, the output is -1.

Solution Approach:

解决方法:

The solution approach for the above problem is like Kadane's algorithm

上述问题的解决方法类似于Kadane算法

The algorithm is like below,

算法如下

  • Declare two variables curmax=0 and max_sofar=-1

    声明两个变量curmax = 0和max_sofar = -1

    curmax will keep track for local maximum difference and max_sofar is basically for final global solution.

    curmax将跟踪局部最大差异,而max_sofar基本上是最终的全局解决方案。

  • for i=0 to s.length()
        if(s[i]=='0') //if current character is 0
            curmax++; //increase the current difference
        else
            curmax--; //decrease the current difference
        if(curmax<0) //if local difference goes down negative
            curmax=0; //discard up to this substring
        if(curmax>max_sofar) //update global value if possible
            max_sofar=curmax;
    end for 
    
    
  • Now, if there is at least one '0'

    现在,如果至少有一个“ 0”

    The minimum result will be 1 (We will consider '0' as minimum possible substring)

    最小结果为1(我们将“ 0”视为可能的最小子字符串)

    So, if

    因此,如果

    𝑚𝑎𝑥_𝑠𝑜𝑓𝑎𝑟 is finally updated as 0, that means all the characters are 1, there is no character '0'. Then we will return -1, else return 𝑚𝑎𝑥_𝑠𝑜𝑓𝑎𝑟

    𝑚𝑎𝑥_𝑠𝑜𝑓𝑎𝑟最后更新为0,表示所有字符均为1,没有字符“ 0”。 然后我们将返回-1,否则返回𝑚𝑎𝑥_𝑠𝑜𝑓𝑎𝑟

Let's check one example to fully understand how the algorithm works

我们来看一个例子,以充分了解该算法的工作原理

Let's the string be "0100100"
So
i=0
Curmax=1
Max_sofar updated to 1

i=1
Curmax=0
Max_sofar not updated ,still 1

i=2
Curmax=1
Max_sofar not updated,still  1

i=3
Curmax=2
Max_sofar updated to 2

i=4
Curmax=1 (2-1)
Max_sofar not updated,still 2

i=5
Curmax=2
Max_sofar not updated,still 1

i=6
Curmax=3
Max_sofar updated to 3

Final result is 3 that's why

C++ Implementation:

C ++实现:

#include <bits/stdc++.h>
using namespace std;

int maxdiff(string s)
{

    int curmax = 0;
    int max_sofar = -1;

    for (int i = 0; i < s.length(); i++) {
        //similar approach to kadanes algo
        if (s[i] == '0')
            curmax++;
        else
            curmax--;
        if (curmax < 0)
            curmax = 0;
        if (curmax > max_sofar)
            max_sofar = curmax;
    }
    return max_sofar == 0 ? -1 : max_sofar;
}

int main()
{

    string s;
    cout << "Enter string:\n";
    cin >> s;

    cout << "Max difference between 0 and 1 in any substring: " << maxdiff(s) << endl;

    return 0;
}

Output:

输出:

Enter string:
001100010
Max difference between 0 and 1 in any substring: 3


翻译自: https://www.includehelp.com/icp/maximum-difference-of-zeros-and-ones-in-binary-string.aspx

文本字符串 二进制字符串

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值