String Construction - Google Top Interview Questions


Problem Statement :


You are given a list of strings strings where each string contains "A"s and "B"s. 

You are also given integers a and b.

Return the maximum number of strings that can be constructed given that you can use at most a "A"s and at most b "B"s, without reuse.

Constraints

n ≤ 50 where n is the length of strings

a, b ≤ 50

Example 1

Input

strings = ["AABB", "AAAB", "A", "B"]

a = 4

b = 2

Output

3

Explanation

We can take these strings using 4 "A"s and 2 "B"s ["AAAB","A","B"]



Solution :



title-img




                        Solution in C++ :

int dp[52][52][52];

int solve(vector<string>& strings, int a, int b) {
    int N = strings.size();
    vector<pair<int, int>> pairs;
    pairs.reserve(N);
    for (const string& s : strings) {
        int num_a = count(s.begin(), s.end(), 'A');
        int num_b = s.size() - num_a;
        pairs.emplace_back(num_a, num_b);
    }
    for (int k = 1; k <= N; k++) {
        auto p = pairs[k - 1];
        for (int i = 0; i <= a; i++) {
            for (int j = 0; j <= b; j++) {
                int t = dp[k - 1][i][j];  // don't use the current string
                if (i >= p.first && j >= p.second) {
                    // do use the current string
                    t = max(t, 1 + dp[k - 1][i - p.first][j - p.second]);
                }
                dp[k][i][j] = t;
            }
        }
    }
    return dp[N][a][b];
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    private static final int len = 52;
    public int solve(String[] arr, int a, int b) {
        int[][][] dp = new int[len][len][len];

        for (int i = 1; i <= arr.length; i++) {
            String str = arr[i - 1];
            int countA = getCount(str, 'A');
            int countB = getCount(str, 'B');
            for (int j = 0; j <= a; j++) {
                for (int k = 0; k <= b; k++) {
                    dp[i][j][k] = dp[i - 1][j][k];
                    if (j - countA >= 0 && k - countB >= 0)
                        dp[i][j][k] =
                            Math.max(dp[i - 1][j][k], 1 + dp[i - 1][j - countA][k - countB]);
                }
            }
        }
        return dp[arr.length][a][b];
    }

    private int getCount(String str, char chr) {
        int count = 0;
        for (char ch : str.toCharArray()) {
            if (ch == chr)
                ++count;
        }
        return count;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, strings, a, b):
        dp = defaultdict(int, {(a, b): 0})
        ans = 0
        for s in strings:
            f = Counter(s)
            a_count = f["A"]
            b_count = f["B"]
            for (i, j), val in list(dp.items()):
                if i >= a_count and j >= b_count:
                    dp[(i - a_count, j - b_count)] = max(dp[(i - a_count, j - b_count)], val + 1)
                    ans = max(ans, dp[(i - a_count, j - b_count)])
        return ans
                    


View More Similar Problems

Game of Two Stacks

Alexa has two stacks of non-negative integers, stack A = [a0, a1, . . . , an-1 ] and stack B = [b0, b1, . . . , b m-1] where index 0 denotes the top of the stack. Alexa challenges Nick to play the following game: In each move, Nick can remove one integer from the top of either stack A or stack B. Nick keeps a running sum of the integers he removes from the two stacks. Nick is disqualified f

View Solution →

Largest Rectangle

Skyline Real Estate Developers is planning to demolish a number of old, unoccupied buildings and construct a shopping mall in their place. Your task is to find the largest solid area in which the mall can be constructed. There are a number of buildings in a certain two-dimensional landscape. Each building has a height, given by . If you join adjacent buildings, they will form a solid rectangle

View Solution →

Simple Text Editor

In this challenge, you must implement a simple text editor. Initially, your editor contains an empty string, S. You must perform Q operations of the following 4 types: 1. append(W) - Append W string to the end of S. 2 . delete( k ) - Delete the last k characters of S. 3 .print( k ) - Print the kth character of S. 4 . undo( ) - Undo the last (not previously undone) operation of type 1 or 2,

View Solution →

Poisonous Plants

There are a number of plants in a garden. Each of the plants has been treated with some amount of pesticide. After each day, if any plant has more pesticide than the plant on its left, being weaker than the left one, it dies. You are given the initial values of the pesticide in each of the plants. Determine the number of days after which no plant dies, i.e. the time after which there is no plan

View Solution →

AND xor OR

Given an array of distinct elements. Let and be the smallest and the next smallest element in the interval where . . where , are the bitwise operators , and respectively. Your task is to find the maximum possible value of . Input Format First line contains integer N. Second line contains N integers, representing elements of the array A[] . Output Format Print the value

View Solution →

Waiter

You are a waiter at a party. There is a pile of numbered plates. Create an empty answers array. At each iteration, i, remove each plate from the top of the stack in order. Determine if the number on the plate is evenly divisible ith the prime number. If it is, stack it in pile Bi. Otherwise, stack it in stack Ai. Store the values Bi in from top to bottom in answers. In the next iteration, do the

View Solution →