Problem Description
You are given a (0-indexed) array of positive integers candiesCount
where candiesCount[i]
represents the number of candies of the i-th type you have. You are also given a 2D array queries
where queries[i] = [favoriteType_i, favoriteDay_i, dailyCap_i]
.
You play a game with the following rules:
- You start eating candies on day
0
. - You cannot eat any candy of type
i
unless you have eaten all candies of typei - 1
. - You must eat at least one candy per day until you have eaten all the candies.
Construct a boolean array answer
such that answer.length == queries.length
and answer[i]
is true
if you can eat a candy of type favoriteType_i
on day favoriteDay_i
without eating more than dailyCap_i
candies on any day, and false
otherwise. Note that you can eat different types of candy on the same day, provided that you follow rule 2.
Return the constructed array answer
.
Key Insights
- You can only eat candies of type
i
after finishing all candies of typei-1
. - Each day, you must eat at least one candy and cannot exceed the daily cap.
- The total number of candies consumed affects how many days it takes to reach a specific type of candy.
- A prefix sum can be utilized to calculate the total candies eaten up to a given type.
Space and Time Complexity
Time Complexity: O(n + q), where n is the number of candy types and q is the number of queries.
Space Complexity: O(1), as we are using a constant amount of extra space.
Solution
To solve the problem, we will:
- Calculate the prefix sums of the
candiesCount
array to determine the total number of candies available up to each type. - For each query, check:
- The total amount of candies needed to reach the
favoriteType
. - The number of days required to reach the
favoriteDay
. - Ensure that the daily cap is not exceeded on any day.
- The total amount of candies needed to reach the
- Return a boolean array indicating the result for each query.
We will utilize an array to store the cumulative sum of candies and use it to evaluate each query efficiently.