给定一个字符串S ,找出其中最长的平衡子序列的长度。平衡字符串定义为:-
- 空字符串是平衡字符串。
- 如果 X 和 Y 是平衡字符串,则 (X)Y 和 XY 是平衡字符串。
例子:
Input : S = "()())"
Output : 4
()() is the longest balanced subsequence
of length 4.
Input : s = "()(((((()"
Output : 4
方法 1:蛮力方法是找到给定字符串S 的所有子序列,并检查所有可能的子序列是否形成平衡序列。如果是,则将其与最大值进行比较。
更好的方法是使用动态规划。
最长平衡子序列 (LBS) 可以递归定义如下。
LBS of substring str[i..j] :
If str[i] == str[j]
LBS(str, i, j) = LBS(str, i + 1, j - 1) + 2
Else
LBS(str, i, j) = max(LBS(str, i, k) +
LBS(str, k + 1, j))
Where i <= k < j
声明一个二维矩阵 dp[][],其中我们的状态 dp[i][j] 将表示从索引 i 到 j 的最长平衡子序列的长度。我们将按照 j – i 递增的顺序计算这个状态。对于特定状态 dp[i][j],我们将尝试将第 j 个符号与第 k 个符号进行匹配。只有当 S[k] 是 ‘(‘ 并且 S[j] 是 ‘)’ 时才可以这样做。对于所有可能的 k,我们将取最大值 2 + dp[i][k – 1] + dp[k + 1][j – 1] 以及 max(dp[i + 1][j], dp[ i][j – 1]) 并将值放入 dp[i][j]。这样我们就可以把所有的dp状态都填满了。 dp[0][length of 字符串 – 1](考虑 0 索引)将是我们的答案。
下面是这个方法的实现:
C++
// C++ program to find length of
// the longest balanced subsequence
#include
using namespace std;
int maxLength(char s[], int n)
{
int dp[n][n];
memset(dp, 0, sizeof(dp));
// Considering all balanced
// substrings of length 2
for (int i = 0; i < n - 1; i++)
if (s[i] == '(' && s[i + 1] == ')')
dp[i][i + 1] = 2;
// Considering all other substrings
for (int l = 2; l < n; l++) {
for (int i = 0, j = l; j < n; i++, j++) {
if (s[i] == '(' && s[j] == ')')
dp[i][j] = 2 + dp[i + 1][j - 1];
for (int k = i; k < j; k++)
dp[i][j] = max(dp[i][j],
dp[i][k] + dp[k + 1][j]);
}
}
return dp[0][n - 1];
}
// Driver Code
int main()
{
char s[] = "()(((((()";
int n = strlen(s);
cout << maxLength(s, n) << endl;
return 0;
}
Java
// Java program to find length of the
// longest balanced subsequence.
import java.io.*;
class GFG {
static int maxLength(String s, int n)
{
int dp[][] = new int[n][n];
// Considering all balanced substrings
// of length 2
for (int i = 0; i < n - 1; i++)
if (s.charAt(i) == '(' && s.charAt(i + 1) == ')')
dp[i][i + 1] = 2;
// Considering all other substrings
for (int l = 2; l < n; l++) {
for (int i = 0, j = l; j < n; i++, j++) {
if (s.charAt(i) == '(' && s.charAt(j) == ')')
dp[i][j] = 2 + dp[i + 1][j - 1];
for (int k = i; k < j; k++)
dp[i][j] = Math.max(dp[i][j],
dp[i][k] + dp[k + 1][j]);
}
}
return dp[0][n - 1];
}
// Driver Code
public static void main(String[] args)
{
String s = "()(((((()";
int n = s.length();
System.out.println(maxLength(s, n));
}
}
// This code is contributed by Prerna Saini
Python3
# Python3 program to find length of
# the longest balanced subsequence
def maxLength(s, n):
dp = [[0 for i in range(n)]
for i in range(n)]
# Considering all balanced
# substrings of length 2
for i in range(n - 1):
if (s[i] == '(' and s[i + 1] == ')'):
dp[i][i + 1] = 2
# Considering all other substrings
for l in range(2, n):
i = -1
for j in range(l, n):
i += 1
if (s[i] == '(' and s[j] == ')'):
dp[i][j] = 2 + dp[i + 1][j - 1]
for k in range(i, j):
dp[i][j] = max(dp[i][j], dp[i][k] +
dp[k + 1][j])
return dp[0][n - 1]
# Driver Code
s = "()(((((()"
n = len(s)
print(maxLength(s, n))
# This code is contributed
# by sahishelangia
C#
// C# program to find length of the
// longest balanced subsequence.
using System;
class GFG {
static int maxLength(String s, int n)
{
int[, ] dp = new int[n, n];
// Considering all balanced substrings
// of length 2
for (int i = 0; i < n - 1; i++)
if (s[i] == '(' && s[i + 1] == ')')
dp[i, i + 1] = 2;
// Considering all other substrings
for (int l = 2; l < n; l++) {
for (int i = 0, j = l; j < n; i++, j++) {
if (s[i] == '(' && s[j] == ')')
dp[i, j] = 2 + dp[i + 1, j - 1];
for (int k = i; k < j; k++)
dp[i, j] = Math.Max(dp[i, j],
dp[i, k] + dp[k + 1, j]);
}
}
return dp[0, n - 1];
}
// Driver Code
public static void Main()
{
string s = "()(((((()";
int n = s.Length;
Console.WriteLine(maxLength(s, n));
}
}
// This code is contributed by vt_m.
PHP
Javascript
C++
// C++ program to find length of
// the longest balanced subsequence
#include
using namespace std;
int maxLength(char s[], int n)
{
// As it's subsequence - assuming first
// open brace would map to a first close
// brace which occurs after the open brace
// to make subsequence balanced and second
// open brace would map to second close
// brace and so on.
// Variable to count all the open brace
// that does not have the corresponding
// closing brace.
int invalidOpenBraces = 0;
// To count all the close brace that
// does not have the corresponding open brace.
int invalidCloseBraces = 0;
// Iterating over the String
for (int i = 0; i < n; i++) {
if (s[i] == '(') {
// Number of open braces that
// hasn't been closed yet.
invalidOpenBraces++;
}
else {
if (invalidOpenBraces == 0) {
// Number of close braces that
// cannot be mapped to any open
// brace.
invalidCloseBraces++;
}
else {
// Mapping the ith close brace
// to one of the open brace.
invalidOpenBraces--;
}
}
}
return (
n - (invalidOpenBraces
+ invalidCloseBraces));
}
// Driver Code
int main()
{
char s[] = "()(((((()";
int n = strlen(s);
cout << maxLength(s, n) << endl;
return 0;
}
Java
// Java program to find the length of the
// longest balanced subsequence.
import java.io.*;
class GFG {
static int maxLength(String s, int n)
{
// As it's subsequence - assuming first
// open brace would map to a first close
// brace which occurs after the open brace
// to make subsequence balanced and second
// open brace would map to second close
// brace and so on.
// Variable to count all the open brace
// that does not have the corresponding
// closing brace.
int invalidOpenBraces = 0;
// To count all the close brace that
// does not have the corresponding open brace.
int invalidCloseBraces = 0;
// Iterating over the String
for (int i = 0; i < n; i++) {
if (s.charAt(i) == '(') {
// Number of open braces that
// hasn't been closed yet.vvvvvv
invalidOpenBraces++;
}
else {
if (invalidOpenBraces == 0) {
// Number of close braces that
// cannot be mapped to any open
// brace.
invalidCloseBraces++;
}
else {
// Mapping the ith close brace
// to one of the open brace.
invalidOpenBraces--;
}
}
}
return (
n - (invalidOpenBraces
+ invalidCloseBraces));
}
// Driver Code
public static void main(String[] args)
{
String s = "()(((((()";
int n = s.length();
System.out.println(maxLength(s, n));
}
}
Python3
# Python3 program to find length of
# the longest balanced subsequence
def maxLength(s, n):
# As it's subsequence - assuming first
# open brace would map to a first close
# brace which occurs after the open brace
# to make subsequence balanced and second
# open brace would map to second close
# brace and so on.
# Variable to count all the open brace
# that does not have the corresponding
# closing brace.
invalidOpenBraces = 0;
# To count all the close brace that does
# not have the corresponding open brace.
invalidCloseBraces = 0;
# Iterating over the String
for i in range(n):
if( s[i] == '(' ):
# Number of open braces that
# hasn't been closed yet.
invalidOpenBraces += 1
else:
if(invalidOpenBraces == 0):
# Number of close braces that
# cannot be mapped to any open
# brace.
invalidCloseBraces += 1
else:
# Mapping the ith close brace
# to one of the open brace.
invalidOpenBraces -= 1
return (
n - (
invalidOpenBraces + invalidCloseBraces))
# Driver Code
s = "()(((((()"
n = len(s)
print(maxLength(s, n))
C#
// C# program to find length of the
// longest balanced subsequence.
using System;
class GFG {
static int maxLength(String s, int n)
{
// As it's subsequence - assuming first
// open brace would map to a first close
// brace which occurs after the open brace
// to make subsequence balanced and second
// open brace would map to second close
// brace and so on.
// Variable to count all the open brace
// that does not have the corresponding
// closing brace.
int invalidOpenBraces = 0;
// To count all the close brace that
// does not have the corresponding open brace.
int invalidCloseBraces = 0;
// Iterating over the String
for (int i = 0; i < n; i++) {
if (s[i] == '(') {
// Number of open braces that
// hasn't been closed yet.
invalidOpenBraces++;
}
else {
if (invalidOpenBraces == 0) {
// Number of close braces that
// cannot be mapped to any open brace.
invalidCloseBraces++;
}
else {
// Mapping the ith close brace to
// one of the open brace.
invalidOpenBraces--;
}
}
}
return (
n - (invalidOpenBraces
+ invalidCloseBraces));
}
// Driver Code
public static void Main()
{
string s = "()(((((()";
int n = s.Length;
Console.WriteLine(maxLength(s, n));
}
}
Javascript
输出:
4
时间复杂度: O(n 2 )
辅助空间: O(n 2 )
方法 2:此方法以更有效的方式解决问题。
- 计算要移除的大括号的数量以获得最长的平衡括号子序列。
- 如果右大括号的第 i 个索引数大于左大括号的数量,则必须删除该右大括号。
- 计算需要移除的大括号的数量。
- 最后,额外的开放括号的数量也将被删除。
- 因此,要删除的总数将是额外的左大括号和无效的右大括号的总和。
C++
// C++ program to find length of
// the longest balanced subsequence
#include
using namespace std;
int maxLength(char s[], int n)
{
// As it's subsequence - assuming first
// open brace would map to a first close
// brace which occurs after the open brace
// to make subsequence balanced and second
// open brace would map to second close
// brace and so on.
// Variable to count all the open brace
// that does not have the corresponding
// closing brace.
int invalidOpenBraces = 0;
// To count all the close brace that
// does not have the corresponding open brace.
int invalidCloseBraces = 0;
// Iterating over the String
for (int i = 0; i < n; i++) {
if (s[i] == '(') {
// Number of open braces that
// hasn't been closed yet.
invalidOpenBraces++;
}
else {
if (invalidOpenBraces == 0) {
// Number of close braces that
// cannot be mapped to any open
// brace.
invalidCloseBraces++;
}
else {
// Mapping the ith close brace
// to one of the open brace.
invalidOpenBraces--;
}
}
}
return (
n - (invalidOpenBraces
+ invalidCloseBraces));
}
// Driver Code
int main()
{
char s[] = "()(((((()";
int n = strlen(s);
cout << maxLength(s, n) << endl;
return 0;
}
Java
// Java program to find the length of the
// longest balanced subsequence.
import java.io.*;
class GFG {
static int maxLength(String s, int n)
{
// As it's subsequence - assuming first
// open brace would map to a first close
// brace which occurs after the open brace
// to make subsequence balanced and second
// open brace would map to second close
// brace and so on.
// Variable to count all the open brace
// that does not have the corresponding
// closing brace.
int invalidOpenBraces = 0;
// To count all the close brace that
// does not have the corresponding open brace.
int invalidCloseBraces = 0;
// Iterating over the String
for (int i = 0; i < n; i++) {
if (s.charAt(i) == '(') {
// Number of open braces that
// hasn't been closed yet.vvvvvv
invalidOpenBraces++;
}
else {
if (invalidOpenBraces == 0) {
// Number of close braces that
// cannot be mapped to any open
// brace.
invalidCloseBraces++;
}
else {
// Mapping the ith close brace
// to one of the open brace.
invalidOpenBraces--;
}
}
}
return (
n - (invalidOpenBraces
+ invalidCloseBraces));
}
// Driver Code
public static void main(String[] args)
{
String s = "()(((((()";
int n = s.length();
System.out.println(maxLength(s, n));
}
}
蟒蛇3
# Python3 program to find length of
# the longest balanced subsequence
def maxLength(s, n):
# As it's subsequence - assuming first
# open brace would map to a first close
# brace which occurs after the open brace
# to make subsequence balanced and second
# open brace would map to second close
# brace and so on.
# Variable to count all the open brace
# that does not have the corresponding
# closing brace.
invalidOpenBraces = 0;
# To count all the close brace that does
# not have the corresponding open brace.
invalidCloseBraces = 0;
# Iterating over the String
for i in range(n):
if( s[i] == '(' ):
# Number of open braces that
# hasn't been closed yet.
invalidOpenBraces += 1
else:
if(invalidOpenBraces == 0):
# Number of close braces that
# cannot be mapped to any open
# brace.
invalidCloseBraces += 1
else:
# Mapping the ith close brace
# to one of the open brace.
invalidOpenBraces -= 1
return (
n - (
invalidOpenBraces + invalidCloseBraces))
# Driver Code
s = "()(((((()"
n = len(s)
print(maxLength(s, n))
C#
// C# program to find length of the
// longest balanced subsequence.
using System;
class GFG {
static int maxLength(String s, int n)
{
// As it's subsequence - assuming first
// open brace would map to a first close
// brace which occurs after the open brace
// to make subsequence balanced and second
// open brace would map to second close
// brace and so on.
// Variable to count all the open brace
// that does not have the corresponding
// closing brace.
int invalidOpenBraces = 0;
// To count all the close brace that
// does not have the corresponding open brace.
int invalidCloseBraces = 0;
// Iterating over the String
for (int i = 0; i < n; i++) {
if (s[i] == '(') {
// Number of open braces that
// hasn't been closed yet.
invalidOpenBraces++;
}
else {
if (invalidOpenBraces == 0) {
// Number of close braces that
// cannot be mapped to any open brace.
invalidCloseBraces++;
}
else {
// Mapping the ith close brace to
// one of the open brace.
invalidOpenBraces--;
}
}
}
return (
n - (invalidOpenBraces
+ invalidCloseBraces));
}
// Driver Code
public static void Main()
{
string s = "()(((((()";
int n = s.Length;
Console.WriteLine(maxLength(s, n));
}
}
Javascript
输出:
4
时间复杂度: O(n)
辅助空间: O(1)
如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程和学生竞争性编程现场课程。