Problem Description
A good meal is a meal that contains exactly two different food items with a sum of deliciousness equal to a power of two. Given an array of integers deliciousness
where deliciousness[i]
is the deliciousness of the i-th item of food, return the number of different good meals you can make from this list modulo 10^9 + 7
.
Key Insights
- We need to find pairs of food items such that their deliciousness values sum up to a power of two.
- Powers of two are numbers in the form of
2^k
for non-negative integersk
. - We can use a hash map (or dictionary) to count occurrences of each deliciousness value.
- For each deliciousness value, we can calculate possible pairs that sum to each power of two.
Space and Time Complexity
Time Complexity: O(n * log(max(deliciousness)))
Space Complexity: O(n)
Solution
To solve the problem, we can utilize a hash map to count the occurrences of each deliciousness. We then iterate through each unique deliciousness value and check against all possible powers of two that can be formed using that value. For each target power of two, we check if the complementary deliciousness (i.e., target - current
) exists in our hash map and count valid pairs. Care must be taken not to double-count pairs and ensure that the two items are different.