Table of Contents
Let us understand through an example:-
The methods used in the following program are as follows -
Home Java javaTutorial In Java, find the maximum subarray sum of subarrays after splitting an array into subarrays based on a given query

In Java, find the maximum subarray sum of subarrays after splitting an array into subarrays based on a given query

Aug 29, 2023 am 11:21 AM
subarray array split Maximum subarray sum

In Java, find the maximum subarray sum of subarrays after splitting an array into subarrays based on a given query

We have two arrays of integers, one with calculated elements and the other with the split points required to split the array to generate subsets, we have to calculate each subset in each split The sum of and returns the maximum subset

Let us understand through an example:-

Input− int arr[] = int arr[] = { 9, 4, 5, 6, 7 } int splitPoints[] = { 0, 2, 3, 1 };

Output− The maximum subarray sum after each split [22, 13, 9 , 9]

Explanation− Here we decompose the array according to its split points, and obtain the maximum subset sum after each split

First After the second split strong> → {9} and {4,5,6,7} >> The maximum subarray sum is - 22

After the second split → {9} , {4,5} and {6,7} >> The maximum subarray sum is - 13

After the third split →{9}, {4,5}, { 6} and {7} >> The maximum subarray sum is - 9

After the fourth split →{9}, {4}, {5}, {6} and { 7} >> Maximum subarray sum is- 9

input−int arr[] = int arr[] = { 7, 8, 5, 9, 1 } int splitPoints[] = { 1, 2, 0, 3 };

Output−The maximum subarray sum after each division [15, 115, 10, 9]

Explanation−Here we decompose the array according to its split points, and obtain the maximum subset sum after each split

After the first split → {7, 8} and {5,9,1} >> The maximum subarray sum is 15

After the second split → {7,8}, {5} and {9,1 } >> The maximum sub-array sum is 115

After the third split →{7}, {8}, {5} and {9,1} >> The maximum sub-array sum is 10

After the fourth split →{7}, {8}, {5}, {9} and {1} >> the maximum sub-array sum is 9

The methods used in the following program are as follows -

  • We will start from the main() method

    • Enter the array of any given length , such as arr[] and splitPoints[]. Their lengths are calculated and passed to the method in the form calculateSubsetSum(arr.length, splitPoints.length, splitPoints, arr).

  • In the method calculateSubsetSum()

    • Create an integer array as sum[] and set sum[0 ] is set to arr[0].

    • Start looping FOR from i to 1 until the length of the array, and set sum[i] to sum[i - 1] arr[i] and set temp[0] to new subSets(0, n - 1, sum[n - 1]).

    • Continue to add t2.add(temp[0]) and t1.add(0)

    • Start looping FOR from i to 0, up to the length of the splitPoints array. Inside the loop set currentSplitPoint to t1.floor(splitPoints[i]) and remove from t2 to t2.remove(temp[currentSplitPoint])

    • Set end to temp[currentSplitPoint ] .last and temp[currentSplitPoint] as new subSets(currentSplitPoint, splitPoints[i], sum[splitPoints[i]] - (currentSplitPoint == 0 ? 0 : sum[currentSplitPoint - 1]))

    • Use t2.add(temp[currentSplitPoint]) and temp[splitPoints[i] 1] = new subSets(splitPoints[i] 1, end, sum[end] - sum[splitPoints[i] add] ])

    • ##Use t2.add(temp[splitPoints[i] 1]), t1.add(currentSplitPoint) and t1.add(splitPoints[i] to add 1)

    • Print t2.first() value.

  • Create a class subSets and declare first, last and value as its data members and define the default constructor as subSets(int f, int l, int v), and set first to f, last to l, and value to v

  • Create a class as utilityComparator, which will implement Comparator

    • Create a public method as a comparison and check IF s2.value is not equal to s1.value, then return s2.value - s1.value.

    • Check whether s1.first is not equal to s2.first, and then return s2.first - s1.first

      p>

Example

import java.io.IOException;
import java.io.InputStream;
import java.util.*;
class utilityComparator implements Comparator<subSets>{
   public int compare(subSets s1, subSets s2){
      if(s2.value != s1.value){
         return s2.value - s1.value;
      }
      if(s1.first != s2.first){
         return s2.first - s1.first;
      }
      return 0;
   }
}
class subSets{
   int first;
   int last;
   int value;
   subSets(int f, int l, int v){
      first = f;
      last = l;
      value = v;
   }
}
public class testClass{
   static void calculateSubsetSum(int n, int k, int splitPoints[], int arr[]){
      int sum[] = new int[n];
      sum[0] = arr[0];
      for (int i = 1; i < n; i++){
         sum[i] = sum[i - 1] + arr[i];
      }
      TreeSet<Integer> t1 = new TreeSet<>();
      TreeSet<subSets> t2 = new TreeSet<>(new utilityComparator());
      subSets temp[] = new subSets[n];
      temp[0] = new subSets(0, n - 1, sum[n - 1]);
      t2.add(temp[0]);
      t1.add(0);
      System.out.println("Maximum subarray sum after each split");
      for (int i = 0; i < k; i++){
         int currentSplitPoint = t1.floor(splitPoints[i]);
         t2.remove(temp[currentSplitPoint]);
         int end = temp[currentSplitPoint].last;
         temp[currentSplitPoint] = new subSets(currentSplitPoint, splitPoints[i], sum[splitPoints[i]] - (currentSplitPoint == 0 ? 0 : sum[currentSplitPoint - 1]));
         t2.add(temp[currentSplitPoint]);
         temp[splitPoints[i] + 1] = new subSets(splitPoints[i] + 1, end, sum[end] -       sum[splitPoints[i]]);
         t2.add(temp[splitPoints[i] + 1]);
         t1.add(currentSplitPoint);
         t1.add(splitPoints[i] + 1);
         System.out.println(t2.first().value);
      }
   }
   public static void main(String[] args){
      int arr[] = { 2, 1, 6, 8, 5, 10, 21, 13};
      int splitPoints[] = { 3, 1, 2, 0, 4, 5 };
      calculateSubsetSum(arr.length, splitPoints.length, splitPoints, arr);
   }
}
Copy after login

Output

If we run the above code it will generate the following output

Maximum subarray sum after each split
49
49
49
49
44
34
Copy after login

The above is the detailed content of In Java, find the maximum subarray sum of subarrays after splitting an array into subarrays based on a given query. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

In Java, find the maximum subarray sum of subarrays after splitting an array into subarrays based on a given query In Java, find the maximum subarray sum of subarrays after splitting an array into subarrays based on a given query Aug 29, 2023 am 11:21 AM

We have two arrays of integers, one with the calculated elements and the other with the split points required to split the array to generate subsets, we have to calculate the sum of each subset in each split and return the maximum subset Let's go through the example Understanding: - input −intarr[]=intarr[]={9,4,5,6,7}intsplitPoints[]={0,2,3,1}; output−the maximum subarray sum after each split [ 22,13,9,9] Explanation − Here we decompose the array according to its split points and get the maximum subset after each split and after the first split → {9} and {4,5,6,7 }>>The maximum sum of subarrays is -22 after the second split→{9},{4

Write a code using C++ to find the number of subarrays with the same minimum and maximum values Write a code using C++ to find the number of subarrays with the same minimum and maximum values Aug 25, 2023 pm 11:33 PM

In this article, we will use C++ to solve the problem of finding the number of subarrays whose maximum and minimum values ​​are the same. The following is an example of the problem −Input:array={2,3,6,6,2,4,4,4}Output:12Explanation:{2},{3},{6},{6},{2 },{4},{4},{4},{6,6},{4,4},{4,4}and{4,4,4}arethesubarrayswhichcanbeformedwithmaximumandminimumelementsame.Input:array={3,3, 1,5,

How to merge and split PHP arrays How to merge and split PHP arrays Sep 05, 2023 am 08:47 AM

PHP array is a very commonly used data structure, and the merging and splitting operations of arrays are often involved in development. This article will introduce how to use PHP language to implement these two operations, and attach corresponding code examples. 1. Merge arrays The operation of merging arrays can be implemented using the array_merge() function. This function accepts multiple arrays as arguments and merges them into a new array. Code example: $array1=["apple","ba

Write a code using C++ to find the number of subarrays with odd sums Write a code using C++ to find the number of subarrays with odd sums Sep 21, 2023 am 08:45 AM

A subarray is a contiguous portion of an array. For example, we consider an array [5,6,7,8], then there are ten non-empty subarrays, such as (5), (6), (7), (8), (5,6), (6, 7), (7,8), (5,6,7), (6,7,8) and (5,6,7,8). In this guide, we will explain all possible information in C++ to find the number of subarrays with odd sums. To find the number of subarrays of odd sums we can use different methods, so here is a simple example - Input:array={9,8,7,6,5}Output:9Explanation:Sumofsubarray-{9}= 9{7

The longest subarray whose greatest common divisor is greater than 1 The longest subarray whose greatest common divisor is greater than 1 Sep 18, 2023 pm 10:17 PM

An array is a collection of similar data stored in adjacent memory locations in a contiguous manner. By defining the offset value as a specific base value for the database, it is easier to evaluate the specific position of each element. The base value for that particular index is zero, and the offset value is the difference between the two particular indices. A subarray is a part of a specific array and can be defined as a set of variables, labeled with multiple values. The longest subarray refers to an array in which all elements in the array are greater than K. Here the sum of the maximum sum subarray is - less than or equal to the given data set in the given data set. To find the length of the longest subarray given less than 1 in a data set, we just need to find the total number of 1's in a particular subarray. NOTE: The count should be greater than the count of zero. The greatest common divisor is a mathematical phenomenon in which I

Written in C++, find the number of subarrays whose sum is less than K Written in C++, find the number of subarrays whose sum is less than K Sep 07, 2023 pm 03:25 PM

In this post, we will find the number of subarrays with sum less than K using C++. In this problem, we have an array arr[] and an integer K. Now we need to find the subarrays whose sum is less than K. Here is the example −Input:arr[]={1,11,2,3,15}K=10Output:4{1},{2},{3}and{2,3} to find the solution Now we Two different approaches will be used to solve the given problem - brute force In this approach we will iterate through all sub-arrays and calculate their sum and if the sum is less than k then compare with k to increase our Answer. Example#include<

Written in C++, find the number of prime numbers in a subarray Written in C++, find the number of prime numbers in a subarray Sep 01, 2023 am 08:37 AM

In this article, we will describe a method to find the number of prime numbers in a subarray. We have an array of positive numbers arr[] and q queries with two integers representing our range {l,R} and we need to find the number of prime numbers in the given range. Below is an example for the given problem - Input:arr[]={1,2,3,4,5,6},q=1,L=0,R=3Output:2Inthegivenrangetheprimesare{2,3}.Input:arr []={2,3,5,8,12,11},q=1,L=0,R=5Output:4Inthegivenrangetheprimesare{2,3,5

After splitting the given array into two halves, after performing K circular shifts, find the sum of the array using bitwise OR After splitting the given array into two halves, after performing K circular shifts, find the sum of the array using bitwise OR Aug 27, 2023 pm 11:05 PM

In C++, splitting an array means dividing the array into multiple subarrays. The bitwise OR operator is used to handle comparisons and calculations between two bitwise OR indices in C++. In this article, we use k circular shifts, which means that the last index position will be moved to the zero index position, i.e., to the first array element according to k times. Let us take an example to understand circular shift in array. The given array is 1,2,3,4,5,6,7 with length 6. Now we assign the value 3 to k, which means k circular shifts. The operation steps of circular shift are as follows: Step 1−We move index [6] to index [1], and then index [5] saves the position of index [6]. The first circular shift becomes 7,1,2,3,4,5,6, which

See all articles