A non-empty array A consisting of N integers is given.
A triplet (X, Y, Z), such that 0 ≤ X < Y < Z < N, is called a double slice.
The sum of double slice (X, Y, Z) is the total of A[X + 1] + A[X + 2] + ... + A[Y − 1] + A[Y + 1] + A[Y + 2] + ... + A[Z − 1].
For example, array A such that:
A[0] = 3 A[1] = 2 A[2] = 6 A[3] = -1 A[4] = 4 A[5] = 5 A[6] = -1 A[7] = 2contains the following example double slices:
- double slice (0, 3, 6), sum is 2 + 6 + 4 + 5 = 17,
- double slice (0, 3, 7), sum is 2 + 6 + 4 + 5 − 1 = 16,
- double slice (3, 4, 5), sum is 0.
The goal is to find the maximal sum of any double slice.
Write a function:
class Solution { public int solution(int[] A); }
that, given a non-empty array A consisting of N integers, returns the maximal sum of any double slice.
For example, given:
A[0] = 3 A[1] = 2 A[2] = 6 A[3] = -1 A[4] = 4 A[5] = 5 A[6] = -1 A[7] = 2the function should return 17, because no double slice of array A has a sum of greater than 17.
Write an efficient algorithm for the following assumptions:
- N is an integer within the range [3..100,000];
- each element of array A is an integer within the range [−10,000..10,000].
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.lengt)
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.length - 1; idx++) {
}
int[] secondSubSum = new int[A.length];
for (int idx = A.length - 2; idx >= 1; idx--)
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.length - 1; idx++) {
firstSubSum[idx] = Math.max(0, firstSubSum[idx - 1] + A[idx]);
}
int[] secondSubSum = new int[A.length];
for (int idx = A.length - 2; idx >= 1; idx--) {
secondSubSum[idx] =
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.length - 1; idx++) {
firstSubSum[idx] = Math.max(0, firstSubSum[idx - 1] + A[idx]);
}
int[] secondSubSum = new int[A.length];
for (int idx = A.length - 2; idx >= 1; idx--) {
secondSubSum[idx] = Math.max(0, secondSubSum[idx + 1] + A[idx]);
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
// Init subsum arrays.
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.length - 1; idx++) {
firstSubSum[idx] = Math.max(0, firstSubSum[idx - 1] + A[idx]);
}
int[] secondSubSum = new int[A.length];
for (int idx = A.length - 2; idx >= 1; idx--) {
secondSubSum[idx] = Math.max(0, secondSubSum[idx + 1] + A[idx]);
}
// Calculate max(result) value.
for (int idx = 1; idx < A.length - 1;)
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
// Init subsum arrays.
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.length - 1; idx++) {
firstSubSum[idx] = Math.max(0, firstSubSum[idx - 1] + A[idx]);
}
int[] secondSubSum = new int[A.length];
for (int idx = A.length - 2; idx >= 1; idx--) {
secondSubSum[idx] = Math.max(0, secondSubSum[idx + 1] + A[idx]);
}
// Calculate max(result) value.
for (int idx = 1; idx < A.length - 1; idx++) {
int temp = firstSubSum[idx - 1] + secondSubSum[idx + 1];
if (temp > result) {
result
}
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
// Init subsum arrays.
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.length - 1; idx++) {
firstSubSum[idx] = Math.max(0, firstSubSum[idx - 1] + A[idx]);
}
int[] secondSubSum = new int[A.length];
for (int idx = A.length - 2; idx >= 1; idx--) {
secondSubSum[idx] = Math.max(0, secondSubSum[idx + 1] + A[idx]);
}
// Calculate max(result) value.
for (int idx = 1; idx < A.length - 1; idx++) {
int temp = firstSubSum[idx - 1] + secondSubSum[idx + 1];
if (temp > result) {
result = temp;
}
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
// Init subsum arrays.
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.length - 1; idx++) {
firstSubSum[idx] = Math.max(0, firstSubSum[idx - 1] + A[idx]);
}
int[] secondSubSum = new int[A.length];
for (int idx = A.length - 2; idx >= 1; idx--) {
secondSubSum[idx] = Math.max(0, secondSubSum[idx + 1] + A[idx]);
}
// Calculate max(result) value.
for (int idx = 1; idx < A.length - 1; idx++) {
int temp = firstSubSum[idx - 1] + secondSubSum[idx + 1];
if (temp > result) {
result = temp;
}
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
// Init subsum arrays.
int[] firstSubSum = new int[A.length];
for (int idx = 1; idx < A.length - 1; idx++) {
firstSubSum[idx] = Math.max(0, firstSubSum[idx - 1] + A[idx]);
}
int[] secondSubSum = new int[A.length];
for (int idx = A.length - 2; idx >= 1; idx--) {
secondSubSum[idx] = Math.max(0, secondSubSum[idx + 1] + A[idx]);
}
// Calculate max(result) value.
for (int idx = 1; idx < A.length - 1; idx++) {
int temp = firstSubSum[idx - 1] + secondSubSum[idx + 1];
if (temp > result) {
result = temp;
}
}
return result;
}
}
The solution obtained perfect score.