Medium
,Array
,DP
2140. Solving Questions With Brainpower
You are given a 0-indexed 2D integer array questions
where questions[i]
= [, ].
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 points but you will be unable to solve each of the next questions. If you skip question i
, you get to make the decision on the next question.
questions = [[3, 2], [4, 3], [4, 4], [2, 5]]
:
0
is solved, you will earn 3
points but you will be unable to solve questions 1
and 2
.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:
Example 2:
Constraints:
questions.length
<= 105questions[i].length
== 2第一次錯是沒注意到brainpower應該要從後面往回看才對
第二次錯是沒注意到brainpower要+1
不過這個跑測試就發現了應該不算錯吧ㄏㄏMarsgoatMay 12, 2023
Yen-Chi ChenFri, May 12, 2023
JimMay 13, 2023