search
HomeBackend DevelopmentC++Make binary strings equal by repeatedly replacing the second bit

Make binary strings equal by repeatedly replacing the second bit

In this problem, we need to convert bin1 string to bin2 string by replacing the second character of bin1 string with the first and second characters The minimum or maximum value in , and the first character is deleted.

Since we need to delete the first character, we need to ensure that the last len2 − 1 characters in the two strings are the same. Additionally, we need to make sure that we can get the first character of the second string by performing the given operation on the starting character of the bin1 string.

Problem Statement - We are given bin1 and bin2 binary strings of length len1 and len2 respectively. We need to check if we can convert bin1 string to bin2 string by doing the following.

  • Update the second character of the bin1 string using the minimum or maximum value of the first and second characters of the bin1 string.

  • Remove the first character of the bin1 string, and the string size will be reduced by 1 each time.

Example

enter

bin1 = "0101011"; bin2 = "011";

Output

Yes

Instructions- We can do the following to convert bin1 string to bin2 string.

  • We can replace the second character with min(0,1) and delete the first character. Therefore, the string becomes 001011.

  • We perform the same operation again and the string becomes 01011.

  • In the next few operations, the string becomes 0011 and 011 respectively.

enter

bin1 = "1110"; bin2 = "1110";

Output

Yes

Explanation - The given strings are already the same.

enter

bin1 = "101101"; bin2 = "1110";

Output

No

Explanation - We cannot convert bin1 string to bin2 string by performing the given operation.

method 1

If the length of bin1 string is smaller, we cannot convert it to bin2 string.

In other cases, the last len2 − 1 characters of the bin1 string remain unchanged because we do not perform any operation on it. Therefore, the last len2 − 1 characters in both strings should be the same.

In addition, if the first character of the bin2 string is '0', we should perform min() operation on the starting character of the bin1 string, and it should contain at least one '0'.

If the first character in the bin2 string is '1', we should perform max() operation on the starting character of the bin2 string, and it should contain at least one '1'.

algorithm

Step 1 - If the length of bin1 is less than the length of bin2 string, return false.

Step 2 - Traverse the bin2 string starting from the second position.

Step 3 - If bin2[p] is not equal to bin1[p len1 - len2], return false because the last len2 -1 characters are not the same.

Step 4 - Traverse the first len1 - len2 1 character and check whether it contains the bin2[0] character. If yes, return true.

Step 5 - Return false at the end of the function.

Example

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

bool convertAtoB(string bin1, string bin2) {
    int len1 = bin1.size(), len2 = bin2.size();
    // When length 1 is less than length 2
    if (len1 < len2) {
        return false;
    }
    // Check whether substring bin1[p + len1 - len2]... bin1[len1] and bin2[1]... bin2[len2]
    for (int p = 1; p < len2; p++) {
        if (bin1[p + len1 - len2] != bin2[p]) {
            return false;
        }
    }
    // Check whether substring bin1[0... len1 - len2 - 1] contains bin2[0]
    for (int p = 0; p < len1 - len2 + 1; p++) {
        if (bin1[p] == bin2[0]) {
            return true;
        }
    }
    return false;
}
int main() {
    string bin1 = "0101011";
    string bin2 = "011";
    bool res = convertAtoB(bin1, bin2);
    if (res == true) {
        cout << "YES, It is possible to convert bin1 to bin2.";
    } else {
        cout << "NO, It is not possible to convert bin1 to bin2.";
    }
}

Output

YES, It is possible to convert bin1 to bin2.

Time complexity - O(N) to match string characters.

Space complexity - O(1), since we don't use any dynamic space.

We learned to convert the first binary string to the second binary string by following the given operation. A programmer might try to check if one string can be converted to another by replacing the last character with the minimum or maximum value of the last and last second characters and removing the last character.

The above is the detailed content of Make binary strings equal by repeatedly replacing the second bit. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
5分钟掌握PyCharm替换快捷键,轻松提升编程速度!5分钟掌握PyCharm替换快捷键,轻松提升编程速度!Feb 22, 2024 am 10:57 AM

PyCharm是一款常用的Python集成开发环境,拥有丰富的功能和快捷键,能够帮助开发者提高编程效率。在日常的编程过程中,掌握PyCharm的替换快捷键技巧可以帮助开发者更快捷地完成任务。本文将为大家介绍PyCharm中一些常用的替换快捷键,帮助大家轻松提升编程速度。1.Ctrl+R替换在PyCharm中,可以使用Ctrl+R快捷键来进行替换操

使用java的StringBuilder.replace()函数替换指定范围的字符使用java的StringBuilder.replace()函数替换指定范围的字符Jul 24, 2023 pm 06:12 PM

使用java的StringBuilder.replace()函数替换指定范围的字符在Java中,StringBuilder类提供了replace()方法,可以用来替换字符串中指定范围的字符。该方法的语法如下:publicStringBuilderreplace(intstart,intend,Stringstr)上面的方法用于替换从索引star

PyCharm新手指南:替换功能全面解析PyCharm新手指南:替换功能全面解析Feb 25, 2024 am 11:15 AM

PyCharm是一款功能强大的Python集成开发环境,具有丰富的功能和工具,能够极大地提高开发效率。其中,替换功能是开发过程中经常用到的功能之一,能够帮助开发者快速修改代码并提高代码质量。本文将详细介绍PyCharm的替换功能,并结合具体的代码示例,帮助新手更好地掌握和使用该功能。替换功能简介PyCharm的替换功能可以帮助开发者在代码中快速替换指定的文本

使用jQuery替换元素的class名称使用jQuery替换元素的class名称Feb 24, 2024 pm 11:03 PM

jQuery是一种经典的JavaScript库,被广泛应用于网页开发中,它简化了在网页上处理事件、操作DOM元素和执行动画等操作。在使用jQuery时,经常会遇到需要替换元素的class名的情况,本文将介绍一些实用的方法,以及具体的代码示例。1.使用removeClass()和addClass()方法jQuery提供了removeClass()方法用于删除

PyCharm替换快捷键,让编程更得心应手!PyCharm替换快捷键,让编程更得心应手!Feb 21, 2024 pm 12:03 PM

PyCharm是一款广受程序员欢迎的集成开发环境,它提供了强大的功能和工具,让编程变得更加高效和便捷。而在PyCharm中,合理设置和替换快捷键是提高编程效率的关键之一。本文将介绍如何在PyCharm中替换快捷键,让编程更加得心应手。一、为什么要替换快捷键在PyCharm中,快捷键可以帮助程序员快速完成各种操作,提高编程效率。然而,每个人习惯不同,有些人可能

MySQL中如何使用REPLACE函数替换字符串中的指定部分MySQL中如何使用REPLACE函数替换字符串中的指定部分Jul 25, 2023 pm 01:18 PM

MySQL是一种常用的关系型数据库管理系统,它提供了多种函数来处理和操作数据。其中,REPLACE函数是用来替换字符串中的指定部分内容的。在本文中,将介绍如何在MySQL中使用REPLACE函数进行字符串替换,并通过代码示例来演示其用法。首先,我们来了解一下REPLACE函数的语法:REPLACE(str,search_str,replace_str)其

如何使用Python在Excel中替换一个单词?如何使用Python在Excel中替换一个单词?Sep 16, 2023 pm 10:21 PM

在Python中,我们可以使用一个名为openpyxl的第三方Python库将Excel中的一个单词替换为另一个单词。MicrosoftExcel是一个用于管理和分析数据的有用工具。使用Python,我们可以自动化一些Excel数据管理任务。在本文中,我们将了解如何使用Python在Excel中替换一个单词。安装openpyxl在Excel中替换Word之前,我们需要使用Python包管理器在系统中安装openpyxl库。要安装openpyxl,请在终端或命令提示符中输入以下命令。Pipinst

揭秘PyCharm中快速替换代码的方法揭秘PyCharm中快速替换代码的方法Feb 25, 2024 pm 11:21 PM

PyCharm是广受开发者喜爱的Python集成开发环境,它提供了许多快速替换代码的方法,让开发过程更加高效。本文将揭秘PyCharm中几种常用的快速替换代码的方法,并提供具体的代码示例,帮助开发者更好地利用这些功能。1.使用替换功能PyCharm提供了强大的替换功能,可以帮助开发者快速替换代码中的文本。通过快捷键Ctrl+R或者在编辑器中右键点击选择Re

See all articles

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 Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools