Table of Contents
Example
illustrate
method 1
algorithm
Output
Method 2
in conclusion
Home Backend Development C++ Longest non-increasing subsequence in a binary string

Longest non-increasing subsequence in a binary string

Sep 07, 2023 pm 11:13 PM
binary string longest non-increasing subsequence

Longest non-increasing subsequence in a binary string

In this problem, we need to find the longest non-increasing subsequence of a given string.

Non-increasing means that the characters are either the same or in descending order. Since binary strings only contain "0" and "1", the resulting string should either start with "1" and end with "0", or start and end with "0" or "1".

To solve this problem, we will count the prefix "1" and suffix "0" at each position of the string, and find the maximum sum of the prefix "1" and the suffix "0".

Problem Statement - We are given a binary string str. We need to find the longest non-increasing subsequence from the given string.

Example

Input –  str = "010100"
Copy after login
Output – 4
Copy after login

illustrate

The longest non-increasing subsequence is "1100".

Input –  str = "010110010"
Copy after login
Output – 6
Copy after login

illustrate

The longest non-increasing subsequence is "111000".

Input –  str = ‘00000000’
Copy after login
Output – 8
Copy after login

illustrate

The longest non-increasing subsequence is '00000000', which is equal to the given string.

method 1

In this method we will store the count of prefix "1" and suffix "0" in the array for each index. After that, we get the values ​​from the same index in both arrays, add them, and find the maximum sum.

algorithm

  • Step 1 - Define pre1s and suffix0s arrays to store prefix 1 and suffix 0. Additionally, initialize all array elements to 0.

  • Step 2 - Use a for loop to iterate through the string and calculate the prefix 1 for each index. If i > 0, then the value of the previous element is added to the current element.

  • Step 3 - If the current character is "1", add 1 to the current value of pre1s[i].

  • Step 4 - Now, count the suffix 0s in the given string. Traverse the string starting from the end.

  • Step 5 - If the value of "I" is not equal to "n – 1", get the value of the "I 1" element and add it to the current element.

  • Step 6 - If the current element is "0", add 1 to the current element.

  • Step 7 - Now, initialize the "res" variable with 0.

  • Step 8 - Iterate over "pre1s" and "suffix0s" using a loop.

  • Step 9 - Get the value from the i-th index in the "pre1s" and "suffix0s" arrays and add them together. Additionally, if "sum" is greater than the current value of the "res" variable, the "res" variable value is changed with the "sum" value.

  • Step 10 - Return the value of the "res" variable.

Example

For input '010100', the prefix array is [0, 1, 1, 2, 2, 2], and the suffix 0 array is [4, 3, 3, 2, 2, 1]. The sum array will be [4, 4, 4, 4, 4, 1] and the maximum value in the sum array is 4. Therefore, the answer will be 4.

#include <bits/stdc++.h>
using namespace std;
int getMaxLength(string str, int n){
   // To store the prefix count of '1's and suffix count of '0's
   int pre1s[n] = {0},
      suffix0s[n] = {0};
   for (int i = 0; i < n; i++){
   
      // get the prefix count of '1's
      if (i > 0){
         pre1s[i] += pre1s[i - 1];
      }
      
      // If the current character is '1', then update the pre1s array by adding 1; else, keep it as it is.
      if (str[i] == '1'){
         pre1s[i] += 1;
      }
   }
   
   // get suffix count of '0's
   for (int i = n - 1; i >= 0; i--) {
   
      // add the suffix count of '0's
      if (i != n - 1)
         suffix0s[i] += suffix0s[i + 1];
         
      // If the current character is '0', then update the suffix0s array by adding 1; else, keep it as it is.
      if (str[i] == '0')
         suffix0s[i] += 1;
   }
   
   // to store the final result value
   int res = 0;
   
   // iterate over the pre1s[] and suffix0s[] array and find the maximum value of pre1s[i] + suffix0s[i]
   for (int i = 0; i < n; i++){
      res = max(res, pre1s[i] + suffix0s[i]);
   }
   
   // Return the result
   return res;
}

// Driver Code
int main(){
   string str = "010100";
   int N = str.length();
   cout << "The length of the longest non-increasing subsequence in the given binary string is - " << getMaxLength(str, N);
   return 0;
}
Copy after login

Output

The length of the longest non-increasing subsequence in the given binary string is - 4
Copy after login

Time complexity - O(N), because we need to initialize the array with prefix 1 and suffix 0.

Space complexity - O(N) since we store prefix 1 and suffix 0 in array

Method 2

In this method, we will first count the total number of zeros. After that, we start iterating through the string, continuing to count "1"s, and if 0 is found, decrementing it by "0"s. Additionally, we add the counts of 0 and 1 in each iteration and find the maximum resulting value.

algorithm

  • Step 1 - Define the 'count1', 'count0' and 'res' variables and initialize them with 0 to store the count of 1, 0 and the final result respectively.

  • Step 2 - Count the total number of zeros by looping through the string and storing it in the "count0" variable.

  • Step 3 - Now, iterate over the string using a loop.

  • Step 4 - In the loop, if the current character is "1", increase the value of "count1" by 1, otherwise decrease the value of "count0" by 1.

  • Step 5 - Additionally, store the maximum value from "res" and "count0 count1" into the "res" variable.

  • Step 6 - When the loop terminates, return the value of the "res" variable.

Example

#include <bits/stdc++.h>
using namespace std;
int getMaxLength(string str, int n){
   int count1 = 0, count0 = 0;
   int res = 0;
   // counting total zeros in the string
   for (int i = 0; i < n; i++){
      if (str[i] == '0')
         count0++;
   }
   
   // counting 1s from left, subtracting zeros from total zeros and adding both counts.
   for (int i = 0; i < n; i++){
      if (str[i] == '1')
         count1++;
      else
         count0--;
      res = max(res, count1 + count0);
   }
   return res;
}
int main(){
   string str = "010110010";
   int N = str.length();
   cout << "The length of the longest non-increasing subsequence in the given binary string is - " << getMaxLength(str, N);
   return 0;
}
Copy after login

Output

The length of the longest non-increasing subsequence in the given binary string is - 6
Copy after login

Time complexity - O(N), since we count the total number of zeros in the string and traverse the string to find the longest subsequence.

Space complexity - O(1)

in conclusion

Here, both methods have the same time complexity but different space complexity. The second method uses constant space when we optimize the code, but the first method uses dynamic space to store the total number of prefix 1 and suffix 0.

The above is the detailed content of Longest non-increasing subsequence in a binary string. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to check the time when Xiaohongshu released a video? What is the longest time it takes to post a video? How to check the time when Xiaohongshu released a video? What is the longest time it takes to post a video? Mar 21, 2024 pm 04:26 PM

As a lifestyle sharing platform, Xiaohongshu is where more and more users choose to publish their own video content and share their daily life with other users. Many users may encounter a problem when posting videos: How to check the time when they or others posted videos? 1. How to check the time when Xiaohongshu released a video? 1. Check the time when you posted the video. To check the time when you posted the video, you must first open the Xiaohongshu app and log in to your personal account. At the bottom of the personal homepage interface, there will be an option marked &quot;Creation&quot;. After clicking to enter, you will see a column called &quot;Video&quot;. Here you can browse a list of all published videos and easily check when they were published. There is a &quot;View Details&quot; button in the upper right corner of each video. After clicking

Longest non-increasing subsequence in a binary string Longest non-increasing subsequence in a binary string Sep 07, 2023 pm 11:13 PM

In this problem, we need to find the longest non-increasing subsequence of a given string. Non-increasing means that the characters are either the same or in descending order. Since binary strings only contain "0" and "1", the resulting string should either start with "1" and end with "0", or start and end with "0" or "1". To solve this problem, we will count the prefix "1" and suffix "0" at each position of the string and find the maximum sum of prefix "1" and suffix "0". Problem Statement - We are given a binary string str. We need to find the longest non-increasing subsequence from the given string. Example Input–str="010100"Output–4 illustrates the longest non-recursive

In PHP, the function of pack() function is to convert data into binary string In PHP, the function of pack() function is to convert data into binary string Aug 31, 2023 pm 02:05 PM

The pack() function packs data into a binary string. Syntax pack(format,args) Parameters format - the format to use. The following are possible values ​​- a - NUL padded string A - space padded string h - hexadecimal string, low nibble first H - hexadecimal string, high nibble first c - signed char C - unsigned char s - signed short (always 16 bits, machine byte order) S - unsigned short (always 16 bits, machine byte order) n - unsigned short (always 16 bits, big endian byte order) v - unsigned short (always 16 bits, little endian byte order) i - signed integer (depends on machine size and byte order) I - None signed integer (depending on

Written in C++, find the number of unique permutations of a binary string starting with 1 Written in C++, find the number of unique permutations of a binary string starting with 1 Sep 05, 2023 am 09:01 AM

In the given problem, we are given a string consisting of 0 and 1; we need to find the total number of all permutations starting with 1. Since the answer may be a huge number, we take it modulo 1000000007 and output it. Input:str="10101001001"Output:210Input:str="101110011"Output:56 We will solve this problem by applying some combinatorial mathematics and setting up some formulas. Solution Method In this method we will count the number of 0's and 1's. Now suppose n is the number of 1's that appear in our string and m is the number of 0's that appear in our string

Checks whether a string can form a palindrome string by swapping character pairs at indices with unequal characters in a binary string Checks whether a string can form a palindrome string by swapping character pairs at indices with unequal characters in a binary string Sep 02, 2023 pm 08:09 PM

Problem Statement We have a string str and a binary string B. The length of both strings is equal to N. We need to check if we can make string str a palindrome string by swapping its characters multiple times on any pair of indexes containing unequal characters in string B. Example Example Input str=‘AAS’ B=‘101’ Output ‘YES’ The Chinese translation of Explanation is: Explanation We can exchange str[1] and str[2] because B[1] and B[2] are not equal. The final string can be 'ASA'. Input str=‘AASS’ B=‘1111’ and output ‘No’. The Chinese translation of Explanation is: Explanation that we cannot make the string palindrome,

Maximize the given function by selecting equal length substrings from the given binary string Maximize the given function by selecting equal length substrings from the given binary string Aug 28, 2023 am 09:49 AM

Given two binary strings str1 and str2 of the same length, we have to maximize the given function value by selecting substrings from the given strings of the same length. The given function is like this - fun(str1,str2)=(len(substring))/(2^xor(sub1,sub2)). Here, len(substring) is the length of the first substring and xor(sub1,sub2) is the XOR of the given substring, this is possible since they are binary strings. Example Input1:stringstr1=10110&stringstr2=11101Output:3 illustrates our

Minimum number of moves required to place all 0's before 1's in a binary string Minimum number of moves required to place all 0's before 1's in a binary string Sep 23, 2023 pm 01:29 PM

Problem Statement We are given a binary string str and we are required to remove minimum characters from the string so that we can place all zeros before ones. Example input str=‘00110100111’ Output 3 Description Here, we can achieve output 3 in two ways. We can remove arr[2], arr[3] and arr[5] or arr[4], arr[6] and arr[7] from the string. Input str=‘001101011’ and output 2 shows that we can delete arr[4] and arr[6] and put all zeros before 1. Input str=‘000111’ Output 0 means that in the given string, all zeros have been placed before 1, so we don’t need to start from

Write a program in C/C++ to count the number of binary strings without consecutive 1's? Write a program in C/C++ to count the number of binary strings without consecutive 1's? Aug 25, 2023 pm 10:05 PM

Here we will see an interesting problem. Suppose a value n is given. We must find all strings of length n in which there are no consecutive 1's. If n=2, the numbers are {00,01,10}, so the output is 3. We can use dynamic programming to solve it. Suppose we have a table 'a' and 'b'. where arr[i] stores the number of binary strings of length i that have no consecutive 1's and terminate with 0. Similarly, b is the same but ends in 1. We can add 0 or 1 if the last one is 0, but only add 0 if the last one is 1. Let's look at the algorithm to get this idea. Algorithm noConsecutiveOnes(n)-Begin&am

See all articles