Hard
There is a test that has n types of questions. You are given an integer target and a 0-indexed 2D integer array types where types[i] = [counti, marksi] indicates that there are counti questions of the ith type, and each one of them is worth marksi points.
Return the number of ways you can earn exactly target points in the exam. Since the answer may be too large, return it modulo 109 + 7.
Note that questions of the same type are indistinguishable.
3 questions of the same type, then solving the 1st and 2nd questions is the same as solving the 1st and 3rd questions, or the 2nd and 3rd questions.Example 1:
Input: target = 6, types = [[6,1],[3,2],[2,3]]
Output: 7
Explanation: You can earn 6 points in one of the seven ways:
Example 2:
Input: target = 5, types = [[50,1],[50,2],[50,5]]
Output: 4
Explanation: You can earn 5 points in one of the four ways:
Example 3:
Input: target = 18, types = [[6,1],[3,2],[2,3]]
Output: 1
Explanation: You can only earn 18 points by answering all questions.
Constraints:
1 <= target <= 1000n == types.length1 <= n <= 50types[i].length == 21 <= counti, marksi <= 50public class Solution {
private static final int MOD = 1000000007;
private Integer[][] memo;
private int helper(int[][] types, int target, int typeIndex) {
int n = types.length;
if (typeIndex >= n) {
return target == 0 ? 1 : 0;
}
if (memo[typeIndex][target] != null) {
return memo[typeIndex][target];
}
int ways = 0;
ways = (ways + helper(types, target, typeIndex + 1)) % MOD;
int currQuestCount = types[typeIndex][0];
int currQuestPoint = types[typeIndex][1];
int pointsEarned;
for (int quest = 1; quest <= currQuestCount; quest++) {
pointsEarned = quest * currQuestPoint;
if (pointsEarned > target) {
break;
}
ways = (ways + helper(types, target - pointsEarned, typeIndex + 1)) % MOD;
}
memo[typeIndex][target] = ways;
return memo[typeIndex][target];
}
public int waysToReachTarget(int target, int[][] types) {
int n = types.length;
memo = new Integer[n + 1][target + 1];
return helper(types, target, 0);
}
}