Problem Description
Given a string text
, you want to use the characters of text
to form as many instances of the word "balloon" as possible. You can use each character in text
at most once. Return the maximum number of instances that can be formed.
Key Insights
- The word "balloon" consists of the characters: b, a, l, o, n.
- The letters 'l' and 'o' appear twice in the word "balloon", while the others appear once.
- To determine how many times we can form "balloon", we need to count the occurrences of each of the required characters in
text
. - The limiting factor will be the character with the minimum ratio of available letters to required letters.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the string text
.
Space Complexity: O(1), since we are using a fixed-size array/hash map to count characters.
Solution
To solve this problem, we can utilize a hash table (or a dictionary) to count the occurrences of each character in the input string. Then, we will compute how many complete sets of the characters needed to form the word "balloon" can be made by checking the counts of each character against its requirement in the word.