📌  相关文章
📜  以任意顺序连接字符串以获得最大数量的“AB”

📅  最后修改于: 2021-10-26 05:42:56             🧑  作者: Mango

给定一个长度为 N 的字符串数组,允许以任何顺序连接它们。找出结果字符串中 ‘AB’ 出现的最大可能次数。

例子:

方法:
预先计算每个字符串中 AB 的数量。集中讨论跨越两个字符串时,字符串被重新安排ABS的数量的变化。在每个字符串重要的字符只有它的第一个和最后一个字符。
有助于回答的字符串是:

  1. 以 B 开头并以 A字符串。
  2. 以 B 开头但不以 A 结尾的字符串。
  3. 不以 B 开头但以 A字符串。

设 c1、c2 和 c3 分别是类别 1、2 和 3 的字符串数。

  • 如果 c1 = 0,那么答案是 min(c2, c3),因为只要两者都可用,我们就可以取两者并进行连接。
  • 如果 c1 > 0 且 c2 + c3 = 0,那么答案是 c1 – 1,因为我们将它们按顺序一一串联起来。
  • 如果 c1 > 0 且 c2 + c3 > 0 并取 min(c2, c3) = p,首先将类别 1字符串和额外的 c1 – 1 ‘AB’ 连接起来,然后如果类别 2 和类别 3 都可用,然后在本得到的字符串的开头添加3类别和目前得到的字符串的末尾添加2类。
  • 有 c1 – 1 + 2 = c1 + 1 个额外的“AB”,现在 c2 和 c3 减一,p 变成 p – 1,现在两者都取
    类别 2 和 3 并添加它们,只要它们都可用,现在我们总共得到 c1 + 1 + (p – 1) = c1 + p 额外的“AB”。这意味着 c1 + min(c2, c3) 。

下面是上述方法的实现:

C++
// C++ implementation of above approach
#include 
using namespace std;
 
// Function to find maximum number of ABs
int maxCountAB(string s[], int n)
{
    // variable A, B, AB for count strings that
    // end with 'A' but not end with 'B', 'B' but
    // does not end with 'A' and 'B' and ends
    // with 'A' respectively.
    int A = 0, B = 0, BA = 0, ans = 0;
 
    for (int i = 0; i < n; i++) {
        string S = s[i];
        int L = S.size();
        for (int j = 0; j < L - 1; j++) {
 
            // 'AB' is already present in string
            // before concatenate them
            if (S.at(j) == 'A' &&
                           S.at(j + 1) == 'B') {
                ans++;
            }
        }
 
        // count of strings that begins
        // with 'B' and ends with 'A
        if (S.at(0) == 'B' && S.at(L - 1) == 'A')
            BA++;
 
        // count of strings that begins
        // with 'B' but does not end with 'A'
        else if (S.at(0) == 'B')
            B++;
 
        // count of strings that ends with
        // 'A' but not end with 'B'
        else if (S.at(L - 1) == 'A')
            A++;
    }
 
    // updating the value of ans and
    // add extra count of 'AB'
    if (BA == 0)
        ans += min(B, A);
    else if (A + B == 0)
        ans += BA - 1;
    else
        ans += BA + min(B, A);
 
    return ans;
}
 
// Driver Code
int main()
{
 
    string s[] = { "ABCA", "BOOK", "BAND" };
 
    int n = sizeof(s) / sizeof(s[0]);
 
    cout << maxCountAB(s, n);
 
    return 0;
}


Java
// Java implementation of above approach
import java.util.*;
 
class GFG
{
     
// Function to find maximum number of ABs
static int maxCountAB(String s[], int n)
{
    // variable A, B, AB for count strings that
    // end with 'A' but not end with 'B', 'B' but
    // does not end with 'A' and 'B' and ends
    // with 'A' respectively.
    int A = 0, B = 0, BA = 0, ans = 0;
 
    for (int i = 0; i < n; i++)
    {
        String S = s[i];
        int L = S.length();
        for (int j = 0; j < L - 1; j++)
        {
 
            // 'AB' is already present in string
            // before concatenate them
            if (S.charAt(j) == 'A' &&
                        S.charAt(j + 1) == 'B')
            {
                ans++;
            }
        }
 
        // count of strings that begins
        // with 'B' and ends with 'A
        if (S.charAt(0) == 'B' && S.charAt(L - 1) == 'A')
            BA++;
 
        // count of strings that begins
        // with 'B' but does not end with 'A'
        else if (S.charAt(0) == 'B')
            B++;
 
        // count of strings that ends with
        // 'A' but not end with 'B'
        else if (S.charAt(L - 1) == 'A')
            A++;
    }
 
    // updating the value of ans and
    // add extra count of 'AB'
    if (BA == 0)
        ans += Math.min(B, A);
    else if (A + B == 0)
        ans += BA - 1;
    else
        ans += BA + Math.min(B, A);
 
    return ans;
}
 
// Driver Code
public static void main(String[] args)
{
    String s[] = { "ABCA", "BOOK", "BAND" };
 
    int n = s.length;
 
    System.out.println(maxCountAB(s, n));
}
}
 
// This code is contributed by 29AjayKumar


Python3
# Python 3 implementation of above approach
 
# Function to find maximum number of ABs
def maxCountAB(s,n):
    # variable A, B, AB for count strings that
    # end with 'A' but not end with 'B', 'B' but
    # does not end with 'A' and 'B' and ends
    # with 'A' respectively.
    A = 0
    B = 0
    BA = 0
    ans = 0
 
    for i in range(n):
        S = s[i]
        L = len(S)
        for j in range(L-1):
            # 'AB' is already present in string
            # before concatenate them
            if (S[j] == 'A' and S[j + 1] == 'B'):
                ans += 1
 
        # count of strings that begins
        # with 'B' and ends with 'A
        if (S[0] == 'B' and S[L - 1] == 'A'):
            BA += 1
 
        # count of strings that begins
        # with 'B' but does not end with 'A'
        elif (S[0] == 'B'):
            B += 1
 
        # count of strings that ends with
        # 'A' but not end with 'B'
        elif (S[L - 1] == 'A'):
            A += 1
 
    # updating the value of ans and
    # add extra count of 'AB'
    if (BA == 0):
        ans += min(B, A)
    elif (A + B == 0):
        ans += BA - 1
    else:
        ans += BA + min(B, A)
    return ans
 
# Driver Code
if __name__ == '__main__':
    s = ["ABCA", "BOOK", "BAND"]
 
    n = len(s)
 
    print(maxCountAB(s, n))
 
# This code is contributed by
# Surendra_Gangwar


C#
// C# implementation of above approach
using System;
 
class GFG
{
         
    // Function to find maximum number of ABs
    static int maxCountAB(string []s, int n)
    {
        // variable A, B, AB for count strings that
        // end with 'A' but not end with 'B', 'B' but
        // does not end with 'A' and 'B' and ends
        // with 'A' respectively.
        int A = 0, B = 0, BA = 0, ans = 0;
     
        for (int i = 0; i < n; i++)
        {
            string S = s[i];
            int L = S.Length;
            for (int j = 0; j < L - 1; j++)
            {
     
                // 'AB' is already present in string
                // before concatenate them
                if (S[j] == 'A' &&
                            S[j + 1] == 'B')
                {
                    ans++;
                }
            }
     
            // count of strings that begins
            // with 'B' and ends with 'A
            if (S[0] == 'B' && S[L - 1] == 'A')
                BA++;
     
            // count of strings that begins
            // with 'B' but does not end with 'A'
            else if (S[0] == 'B')
                B++;
     
            // count of strings that ends with
            // 'A' but not end with 'B'
            else if (S[L - 1] == 'A')
                A++;
        }
     
        // updating the value of ans and
        // add extra count of 'AB'
        if (BA == 0)
            ans += Math.Min(B, A);
             
        else if (A + B == 0)
            ans += BA - 1;
        else
            ans += BA + Math.Min(B, A);
     
        return ans;
    }
     
    // Driver Code
    public static void Main()
    {
        string []s = { "ABCA", "BOOK", "BAND" };
     
        int n = s.Length;
     
        Console.WriteLine(maxCountAB(s, n));
    }
}
 
// This code is contributed by AnkitRai01


Javascript


输出:
2

如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程学生竞争性编程现场课程