forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_546.java
39 lines (37 loc) · 1.49 KB
/
_546.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.fishercoder.solutions;
public class _546 {
public static class Solution1 {
/**
* credit: https://leetcode.com/articles/remove-boxes/#approach-2-using-dp-with-memorizationaccepted
* <p>
* For an entry in dp[l][r][k], l represents the starting index of the subarray,
* r represents the ending index of the subarray
* and k represents the number of elements similar to the rth element
* following it which can be combined to obtain the point information to be stored in dp[l][r][k].
*/
public int removeBoxes(int[] boxes) {
int[][][] dp = new int[100][100][100];
return calculatePoints(boxes, dp, 0, boxes.length - 1, 0);
}
public int calculatePoints(int[] boxes, int[][][] dp, int l, int r, int k) {
if (l > r) {
return 0;
}
if (dp[l][r][k] != 0) {
return dp[l][r][k];
}
while (r > l && boxes[r] == boxes[r - 1]) {
r--;
k++;
}
dp[l][r][k] = calculatePoints(boxes, dp, l, r - 1, 0) + (k + 1) * (k + 1);
for (int i = l; i < r; i++) {
if (boxes[i] == boxes[r]) {
dp[l][r][k] = Math.max(dp[l][r][k],
calculatePoints(boxes, dp, l, i, k + 1) + calculatePoints(boxes, dp, i + 1, r - 1, 0));
}
}
return dp[l][r][k];
}
}
}