Given a numeric string S made up of characters ‘1’, ‘2’ and ‘3’ only, the task is to replace characters with either an open bracket ( ‘(‘ ) or a closed bracket ( ‘)’ ) such that the newly formed string becomes a balanced bracket sequence.
Note: All occurrences of a character must be replaced by the same parentheses.
Examples:
Input: S = “1123”
Output: Yes, (())
Explanation: Replacing occurrences of character ‘1’ with ‘(‘, ‘2’ with ‘)’ and ‘3’ with ‘)’. Therefore, the obtained bracket sequence is “(())”, which is balanced.
Input: S = “1121”
Output: No
Approach: The given problem can be solved based on the following observations:
- For a balanced bracket sequence, it is necessary for the first and last characters to be open and closed brackets respectively. Therefore, the first and the last characters should be different.
- If the first and the last characters of a string are the same, then it is impossible to obtain a balanced bracket sequence.
- If the first and last characters of a string are different, then they are replaced by open and closed brackets respectively. The third character is replaced either by open or closed brackets.
- Check for both ways of replacements one by one for the remaining third character.
- If both replacements of the third remaining character can’t make a balanced bracket sequence, then it is impossible to make a balanced bracket sequence.
Follow the steps below to solve the given problem:
- Check if the first and last characters of the string S are equal or not. If found to be true, then print “No” and return.
- Initialize two variables, say cntforOpen and cntforClose, to store the count of open and closed brackets.
- Iterate over the characters of the string and perform the following operations:
- If the current character is the same as the first character of the string, increment cntforOpen.
- If the current character is the same as the last character of the string, decrement cntforOpen.
- For the remaining third character, increment cntforOpen, i.e. replacing that character with ‘(‘.
- If at any instant, cntforOpen is found to be negative, then a balanced bracket sequence cannot be obtained.
- Similarly, check using cntforClose variable, i.e. replacing the third character with ‘)’.
- If none of the above two methods generates a balanced bracket sequence, then print “No”. Otherwise, print “Yes”.
Below is the implementation of the above approach:
C++
#include <iostream>
using namespace std;
void balBracketSequence(string str)
{
int n = str.size();
if (str[0]
== str[n - 1])
{
cout << "No" << endl;
}
else {
int cntForOpen = 0, cntForClose = 0;
int check = 1;
for ( int i = 0; i < n; i++) {
if (str[i] == str[0])
cntForOpen++;
else if (str[i] == str[n - 1])
cntForOpen--;
else
cntForOpen++;
if (cntForOpen < 0) {
check = 0;
break ;
}
}
if (check && cntForOpen == 0) {
cout << "Yes, " ;
for ( int i = 0; i < n; i++) {
if (str[i] == str[n - 1])
cout << ')' ;
else
cout << '(' ;
}
return ;
}
else {
for ( int i = 0; i < n; i++) {
if (str[i] == str[0])
cntForClose++;
else
cntForClose--;
if (cntForClose
< 0) {
check = 0;
break ;
}
}
if (check
&& cntForClose
== 0) {
cout << "Yes, " ;
for ( int i = 0; i < n;
i++) {
if (str[i] == str[0])
cout << '(' ;
else
cout << ')' ;
}
return ;
}
}
cout << "No" ;
}
}
int main()
{
string str = "123122" ;
balBracketSequence(str);
return 0;
}
|
Java
import java.util.*;
class GFG{
static void balBracketSequence(String str)
{
int n = str.length();
if (str.charAt( 0 )
== str.charAt(n - 1 ))
{
System.out.println( "No" );
}
else {
int cntForOpen = 0 , cntForClose = 0 ;
int check = 1 ;
for ( int i = 0 ; i < n; i++) {
if (str.charAt(i) == str.charAt( 0 ))
cntForOpen++;
else if (str.charAt(i) == str.charAt(n - 1 ))
cntForOpen -= 1 ;
else
cntForOpen += 1 ;
if (cntForOpen < 0 ) {
check = 0 ;
break ;
}
}
if (check != 0 && cntForOpen == 0 ) {
System.out.print( "Yes, " );
for ( int i = 0 ; i < n; i++) {
if (str.charAt(i) == str.charAt(n - 1 ))
System.out.print( ')' );
else
System.out.print( '(' );
}
return ;
}
else {
for ( int i = 0 ; i < n; i++) {
if (str.charAt(i) == str.charAt( 0 ))
cntForClose++;
else
cntForClose--;
if (cntForClose
< 0 ) {
check = 0 ;
break ;
}
}
if (check != 0
&& cntForClose
== 0 ) {
System.out.print( "Yes, " );
for ( int i = 0 ; i < n;
i++) {
if (str.charAt(i) == str.charAt( 0 ))
System.out.print( '(' );
else
System.out.print( ')' );
}
return ;
}
}
System.out.print( "No" );
}
}
public static void main(String args[])
{
String str = "123122" ;
balBracketSequence(str);
}
}
|
Python3
def balBracketSequence( str ):
n = len ( str )
if ( str [ 0 ] = = str [n - 1 ]):
print ( "No" , end = "")
else :
cntForOpen = 0
cntForClose = 0
check = 1
for i in range (n):
if ( str [i] = = str [ 0 ]):
cntForOpen + = 1
elif str [i] = = str [n - 1 ] :
cntForOpen - = 1
else :
cntForOpen + = 1
if (cntForOpen < 0 ):
check = 0
break
if (check and cntForOpen = = 0 ):
print ( "Yes, " , end = "")
for i in range (n):
if ( str [i] = = str [n - 1 ]):
print ( ')' , end = "")
else :
print ( '(' , end = "")
return
else :
for i in range (n):
if ( str [i] = = str [ 0 ]):
cntForClose + = 1
else :
cntForClose - = 1
if (cntForClose < 0 ):
check = 0
break
if (check and cntForClose = = 0 ):
print ( "Yes, " , end = "")
for i in range (n):
if ( str [i] = = str [ 0 ]):
print ( '(' , end = "")
else :
print ( ')' , end = "")
return
print ( "NO" , end = "")
str = "123122"
balBracketSequence( str )
|
C#
using System;
using System.Collections.Generic;
class GFG{
static void balBracketSequence( string str)
{
int n = str.Length;
if (str[0] == str[n - 1])
{
Console.Write( "No" );
}
else
{
int cntForOpen = 0, cntForClose = 0;
int check = 1;
for ( int i = 0; i < n; i++)
{
if (str[i] == str[0])
cntForOpen++;
else if (str[i] == str[n - 1])
cntForOpen--;
else
cntForOpen++;
if (cntForOpen < 0)
{
check = 0;
break ;
}
}
if (check != 0 && cntForOpen == 0)
{
Console.Write( "Yes, " );
for ( int i = 0; i < n; i++)
{
if (str[i] == str[n - 1])
Console.Write( ')' );
else
Console.Write( '(' );
}
return ;
}
else
{
for ( int i = 0; i < n; i++)
{
if (str[i] == str[0])
cntForClose++;
else
cntForClose--;
if (cntForClose < 0)
{
check = 0;
break ;
}
}
if (check != 0 && cntForClose == 0)
{
Console.Write( "Yes, " );
for ( int i = 0; i < n; i++)
{
if (str[i] == str[0])
Console.Write( '(' );
else
Console.Write( ')' );
}
return ;
}
}
Console.Write( "No" );
}
}
public static void Main()
{
string str = "123122" ;
balBracketSequence(str);
}
}
|
Javascript
<script>
function balBracketSequence(str)
{
let n = str.length;
if (str[0]
== str[n - 1])
{
document.write( "No" );
}
else {
let cntForOpen = 0, cntForClose = 0;
let check = 1;
for (let i = 0; i < n; i++) {
if (str[i] == str[0])
cntForOpen++;
else if (str[i] == str[n - 1])
cntForOpen--;
else
cntForOpen++;
if (cntForOpen < 0) {
check = 0;
break ;
}
}
if (check && cntForOpen == 0) {
document.write( "Yes, " );
for (let i = 0; i < n; i++) {
if (str[i] == str[n - 1])
document.write( ')' );
else
document.write( '(' );
}
return ;
}
else {
for (let i = 0; i < n; i++) {
if (str[i] == str[0])
cntForClose++;
else
cntForClose--;
if (cntForClose
< 0) {
check = 0;
break ;
}
}
if (check
&& cntForClose
== 0) {
document.write( "Yes, " );
for (let i = 0; i < n;
i++) {
if (str[i] == str[0])
document.write( '(' );
else
document.write( ')' );
}
return ;
}
}
document.write( "NO" ) ;
}
}
let str = "123122" ;
balBracketSequence(str);
</script>
|
Time Complexity: O(N)
Auxiliary Space: O(1)
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
08 Sep, 2021
Like Article
Save Article