
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Cost to Balance the Parentheses in C++
In this tutorial, we will be discussing a program to find the cost to balance the parentheses.
For this we will be provided with a sequence of brackets. Our task is to balance those parentheses in the equation by shifting their position by one and print -1 if balancing them isn’t possible.
Example
#include <bits/stdc++.h> using namespace std; int costToBalance(string s) { if (s.length() == 0) cout << 0 << endl; //storing count of opening and //closing parentheses int ans = 0; int o = 0, c = 0; for (int i = 0; i < s.length(); i++) { if (s[i] == '(') o++; if (s[i] == ')') c++; } if (o != c) return -1; int a[s.size()]; if (s[0] == '(') a[0] = 1; else a[0] = -1; if (a[0] < 0) ans += abs(a[0]); for (int i = 1; i < s.length(); i++) { if (s[i] == '(') a[i] = a[i - 1] + 1; else a[i] = a[i - 1] - 1; if (a[i] < 0) ans += abs(a[i]); } return ans; } int main(){ string s; s = ")))((("; cout << costToBalance(s) << endl; s = "))(("; cout << costToBalance(s) << endl; return 0; }
Output
9 4
Advertisements