⭐️⭐️
# 題目敘述
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.
# Solution
class Solution { | |
public: | |
long long mostPoints(vector<vector<int>>& questions) { | |
int n = questions.size(); | |
vector<long long int> dp(n+1, 0); | |
for (int i=n-1; i>-1; i--) { | |
int p = questions[i][0], bp = questions[i][1]; | |
int nextq = min(bp + i + 1, n); | |
dp[i] = max(dp[i+1], p + dp[nextq]); | |
} | |
return dp[0]; | |
} | |
}; |
class Solution { | |
public long mostPoints(int[][] questions) { | |
int n = questions.length; | |
long[] dp = new long[n]; | |
dp[n - 1] = questions[n - 1][0]; | |
for (int i = n - 2; i >= 0; --i) { | |
dp[i] = questions[i][0]; | |
int skip = questions[i][1]; | |
if (i + skip + 1 < n) { | |
dp[i] += dp[i + skip + 1]; | |
} | |
// dp[i] = max(solve it, skip it) | |
dp[i] = Math.max(dp[i], dp[i + 1]); | |
} | |
return dp[0]; | |
} | |
} |
class Solution: | |
def mostPoints(self, questions: List[List[int]]) -> int: | |
n = len(questions) | |
dp = [0] * (n+1) | |
for i in range(n-1, -1, -1): | |
p, bp = questions[i][0], questions[i][1] | |
nextq = min(bp + i + 1, n) | |
dp[i] = max(dp[i+1], p + dp[nextq]) | |
return dp[0] |