2140. Solving Questions With Brainpower
2140. Solving Questions With Brainpower Difficulty: Medium Topics: Array, Dynamic Programming You are given a 0-indexed 2D integer array questions where questions[i] = [pointsi, brainpoweri]. The array describes the questions of an exam, where you have to process the questions in order (i.e., starting from question 0) and make a decision whether to solve or skip each question. Solving question i will earn you pointsi points but you will be unable to solve each of the next brainpoweri questions. If you skip question i, you get to make the decision on the next question. For example, given questions = [[3, 2], [4, 3], [4, 4], [2, 5]]: If question 0 is solved, you will earn 3 points but you will be unable to solve questions 1 and 2. If instead, question 0 is skipped and question 1 is solved, you will earn 4 points but you will be unable to solve questions 2 and 3. Return the maximum points you can earn for the exam. Example 1: Input: questions = [[3,2],[4,3],[4,4],[2,5]] Output: 5 Explanation: The maximum points can be earned by solving questions 0 and 3. Solve question 0: Earn 3 points, will be unable to solve the next 2 questions Unable to solve questions 1 and 2 Solve question 3: Earn 2 points Total points earned: 3 + 2 = 5. There is no other way to earn 5 or more points. Example 2: Input: questions = [[1,1],[2,2],[3,3],[4,4],[5,5]] Output: 7 Explanation: The maximum points can be earned by solving questions 1 and 4. Skip question 0 Solve question 1: Earn 2 points, will be unable to solve the next 2 questions Unable to solve questions 2 and 3 Solve question 4: Earn 5 points Total points earned: 2 + 5 = 7. There is no other way to earn 7 or more points. Constraints: 1

2140. Solving Questions With Brainpower
Difficulty: Medium
Topics: Array
, Dynamic Programming
You are given a 0-indexed 2D integer array questions
where questions[i] = [pointsi, brainpoweri]
.
The array describes the questions of an exam, where you have to process the questions in order (i.e., starting from question 0
) and make a decision whether to solve or skip each question. Solving question i
will earn you pointsi points but you will be unable to solve each of the next brainpoweri questions. If you skip question i
, you get to make the decision on the next question.
- For example, given
questions = [[3, 2], [4, 3], [4, 4], [2, 5]]
:- If question
0
is solved, you will earn3
points but you will be unable to solve questions1
and2
. - If instead, question
0
is skipped and question1
is solved, you will earn4
points but you will be unable to solve questions2
and3
.
- If question
Return the maximum points you can earn for the exam.
Example 1:
- Input: questions = [[3,2],[4,3],[4,4],[2,5]]
- Output: 5
-
Explanation: The maximum points can be earned by solving questions 0 and 3.
- Solve question 0: Earn 3 points, will be unable to solve the next 2 questions
- Unable to solve questions 1 and 2
- Solve question 3: Earn 2 points
- Total points earned: 3 + 2 = 5. There is no other way to earn 5 or more points.
Example 2:
- Input: questions = [[1,1],[2,2],[3,3],[4,4],[5,5]]
- Output: 7
-
Explanation: The maximum points can be earned by solving questions 1 and 4.
- Skip question 0
- Solve question 1: Earn 2 points, will be unable to solve the next 2 questions
- Unable to solve questions 2 and 3
- Solve question 4: Earn 5 points
- Total points earned: 2 + 5 = 7. There is no other way to earn 7 or more points.
Constraints:
1 <= questions.length <= 105
questions[i].length == 2
1 <= pointsi, brainpoweri <= 105
Hint:
- For each question, we can either solve it or skip it. How can we use Dynamic Programming to decide the most optimal option for each problem?
- We store for each question the maximum points we can earn if we started the exam on that question.
- If we skip a question, then the answer for it will be the same as the answer for the next question.
- If we solve a question, then the answer for it will be the points of the current question plus the answer for the next solvable question.
- The maximum of these two values will be the answer to the current question.
Solution:
We need to maximize the points we can earn from solving exam questions, given that solving a question prevents us from solving the next few questions as specified by its brainpower value. This problem can be efficiently tackled using dynamic programming.
Approach
-
Dynamic Programming (DP) Setup: We use a DP array where
dp[i]
represents the maximum points we can earn starting from thei-th
question to the end of the exam. - Reverse Iteration: We iterate through the questions from the last to the first. This allows us to build up the solution by considering each question's impact on future questions.
-
Decision Making: For each question
i
, we have two choices:-
Solve the Question: Earn the points of the current question and skip the next
brainpower[i]
questions. The points earned will be the current question's points plus the maximum points from the next allowable question. - Skip the Question: Move to the next question without earning any points from the current one. The points earned will be the same as the maximum points starting from the next question.
-
Solve the Question: Earn the points of the current question and skip the next
- Optimal Choice: For each question, we take the maximum points from either solving or skipping it, updating the DP array accordingly.
Let's implement this solution in PHP: 2140. Solving Questions With Brainpower
/**
* @param Integer[][] $questions
* @return Integer
*/
function mostPoints($questions) {
...
...
...
/**
* go to ./solution.php
*/
}
// Example test cases
$questions1 = [[3,2],[4,3],[4,4],[2,5]];
echo maxPoints($questions1) . "\n"; // Output: 5
$questions2 = [[1,1],[2,2],[3,3],[4,4],[5,5]];
echo maxPoints($questions2) . "\n"; // Output: 7
?>
Explanation:
-
Initialization: We initialize a DP array
dp
of sizen+1
(wheren
is the number of questions) to store the maximum points starting from each question. The last element is initialized to 0 since there are no questions beyond the last one. - Reverse Iteration: Starting from the last question and moving backwards, we determine the maximum points for each question based on whether we solve or skip it.
-
Solving a Question: If we solve the
i-th
question, we add its points to the maximum points starting from the next allowable question (after skippingbrainpower[i]
questions). This is computed using the DP value at the next allowable index. -
Skipping a Question: If we skip the
i-th
question, the maximum points are simply the DP value of the next question. -
Result: The maximum points we can earn from the entire exam is stored in
dp[0]
, which considers all questions starting from the first.
This approach efficiently computes the solution in O(n) time and space complexity, making it suitable for large input sizes up to 100,000 questions.
Contact Links
If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks