-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMaxSumNotPartOfLIS.java
73 lines (65 loc) · 1.73 KB
/
MaxSumNotPartOfLIS.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*https://practice.geeksforgeeks.org/problems/maximum-sum-of-elements-not-part-of-lis/1*/
class Solution
{
static int maxSumLis(int arr[], int n)
{
int totalSum = 0;
// Find total sum of array
for(int i = 0; i < n; i++)
{
totalSum += arr[i];
}
// Maintain a 2D array
int [][]dp = new int[2][n];
for(int i = 0; i < n; i++)
{
dp[0][i] = 1;
dp[1][i] = arr[i];
}
// Update the dp array along
// with sum in the second row
for(int i = 1; i < n; i++)
{
for(int j = 0; j < i; j++)
{
if (arr[i] > arr[j])
{
// In case of greater length
// Update the length along
// with sum
if (dp[0][i] < dp[0][j] + 1)
{
dp[0][i] = dp[0][j] + 1;
dp[1][i] = dp[1][j] + arr[i];
}
// In case of equal length
// find length update length
// with minimum sum
else if (dp[0][i] == dp[0][j] + 1)
{
dp[1][i] = Math.min(dp[1][i],
dp[1][j] + arr[i]);
}
}
}
}
int maxm = 0;
int subtractSum = 0;
// Find the sum that need to
// be subtracted from total sum
for(int i = 0; i < n; i++)
{
if (dp[0][i] > maxm)
{
maxm = dp[0][i];
subtractSum = dp[1][i];
}
else if (dp[0][i] == maxm)
{
subtractSum = Math.min(subtractSum, dp[1][i]);
}
}
// Return the sum
return totalSum - subtractSum;
}
}