Brackets Codechef Solution

Hello Programmers In this post, you will know how to solve the Brackets Codechef Solution.

Brackets Codechef Solution
Brackets Codechef Solution

One more thing to add, don’t directly look for the solutions, first try to solve the problems of Codechef by yourself. If you find any difficulty after trying several times, then you can look for solutions.

Problem

A valid parentheses sequence is a non-empty string where each character is either ‘(‘ or ‘)‘, which satisfies the following constraint:

You can find a way to repeat erasing adjacent pairs of parentheses () until it becomes empty.

For example, ‘(())‘ and ‘()((()()))‘ are valid parentheses sequences, but ‘)()(‘ and ‘(()‘ are not.

Mike has a valid parentheses sequence. He really likes everything about his sequence, except the fact that it is quite long. So Mike has recently decided that he will replace his parentheses sequence with a new one in the near future. But not every valid parentheses sequence will satisfy him. To help you understand his requirements we’ll introduce the pseudocode of function F(S):

	FUNCTION F( S - a valid parentheses sequence )
	BEGIN
		balance = 0
		max_balance = 0
		FOR index FROM 1 TO LENGTH(S)
		BEGIN
			if S[index] == '(' then balance = balance + 1
			if S[index] == ')' then balance = balance - 1
			max_balance = max( max_balance, balance )
		END
		RETURN max_balance
	END

In other words, F(S) is equal to the maximal balance over all prefixes of S.

Let’s denote A as Mike’s current parentheses sequence, and B as a candidate for a new one. Mike is willing to replace A with B if F(A) is equal to F(B). He would also like to choose B with the minimal possible length amongst ones satisfying the previous condition. If there are several such strings with the minimal possible length, then Mike will choose the least one lexicographically, considering ‘(‘ to be less than ‘)‘.

Help Mike!

Input

The first line of the input contains one integer T denoting the number of testcases to process.

The only line of each testcase contains one string A denoting Mike’s parentheses sequence. It is guaranteed that A only consists of the characters ‘(‘ and ‘)’. It is also guaranteed that A is a valid parentheses sequence.

Output

The output should contain exactly T lines, one line per each testcase in the order of their appearance. The only line of each testcase should contain one string B denoting the valid parentheses sequence that should be chosen by Mike to replace A.

Constraints

1 ≤ T ≤ 5;

1 ≤ |A| ≤ 100000(105).

Example

Input:
1
()((()()))
Output:
((()))

Brackets CodeChef Solution in JAVA

import java.util.*;
import java.lang.*;
import java.io.*;
class Codechef
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner sc = new Scanner(System.in);
		int tcases = sc.nextInt();
		while(tcases-->0)
		{
		    String str = sc.next();
		    int balance=0,maxbal=0;
		    for(int i=0;i<str.length();i++)
		    {
		        if(str.charAt(i)=='(')
		            balance++;
		        else balance--;
		        maxbal = Math.max(maxbal,balance);
		    }
		    for(int i=0;i<maxbal;i++)
		        System.out.print("(");
		    for(int i=0;i<maxbal;i++)
		        System.out.print(")");
		    System.out.println();
		}
	}
}

Brackets CodeChef Solution in CPP

#include <bits/stdc++.h>
using namespace std;
int max_balance(string s){
    int res = 0;
    int balance = 0;
    for(int i=0;s[i]!='\0';i++){
        if(s[i] == '(')
            balance++;
        if(s[i] == ')')
            balance--;
        res = max(res,balance);
    }
    return res;
}
int main() {
    int t;
    cin>>t;
    while(t--){
        string s;
        cin>>s;
        int balance = max_balance(s);
        for(int i=0;i<balance;i++)
            cout<<"(";
        for(int i=0;i<balance;i++)
            cout<<")";
        cout<<endl;
    }
	return 0;
}

Brackets CodeChef Solution in Python

t = int(input())
for i in range(t):
    s = input()
    m = 0
    c = 0
    for j in range(len(s)):
        if s[j] == '(':
            c += 1
        elif s[j] == ')':
            c -= 1
        m = max(m, c)
    print(m * '(' + m * ')')

Disclaimer: The above Problem (Brackets) is generated by CodeChef but the solution is provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.

Note:- I compile all programs, if there is any case program is not working and showing an error please let me know in the comment section. If you are using adblocker, please disable adblocker because some functions of the site may not work correctly.

Leave a Reply

Your email address will not be published. Required fields are marked *