classSolution{// Record the questions already been considered// question -> pointsMap<Integer,Long> map;publiclongmostPoints(int[][] questions){
map =newHashMap();long res =dfs(0, questions);return res;}privatelongdfs(int i,int[][] questions){// Out of bound alreadyif(i >= questions.length)return0;if(map.containsKey(i))return map.get(i);// Skip this questionlong notSelect =dfs(i +1, questions);// Select this question// Obtain points of the current question// Jump to the solvable questionlong select = questions[i][0]+dfs(i +1+ questions[i][1], questions);// Memorize
map.put(i,Math.max(notSelect, select));returnMath.max(notSelect, select);}}