- Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_1388.java
37 lines (35 loc) · 1.34 KB
/
_1388.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
packagecom.fishercoder.solutions.secondthousand;
importjava.util.Arrays;
publicclass_1388 {
publicstaticclassSolution1 {
publicintmaxSizeSlices(int[] slices) {
intn = slices.length;
int[] b = Arrays.copyOf(slices, 2 * n);
for (inti = 0; i < n; i++) {
b[i + n] = slices[i];
}
int[][] dp = newint[2 * n][2 * n];
for (intlen = 3; len <= n; len += 3) {
for (inti = 0; i + len - 1 < 2 * n; i++) {
intj = i + len - 1;
for (intk = i + 3; k <= j - 2; k += 3) {
dp[i][j] = Math.max(dp[i][j], dp[i][k - 1] + dp[k][j]);
}
for (intk = i + 1; k < j; k += 3) {
dp[i][j] =
Math.max(
dp[i][j],
(i + 1 <= k - 1 ? dp[i + 1][k - 1] : 0)
+ b[k]
+ (k + 1 <= j - 1 ? dp[k + 1][j - 1] : 0));
}
}
}
intans = 0;
for (inti = 0; i < n; i++) {
ans = Math.max(ans, dp[i][i + n - 1]);
}
returnans;
}
}
}