AdSense

Wednesday, October 19, 2016

Split Array Largest Sum


Given an array which consists of non-negative integers and an integer m, you can split the array into m non-empty continuous subarrays. Write an algorithm to minimize the largest sum among these m subarrays.
Note:
Given m satisfies the following constraint: 1 ≤ m ≤ length(nums) ≤ 14,000.
Examples:
Input:
nums = [7,2,5,10,8]
m = 2

Output:
18

Explanation:
There are four ways to split nums into two subarrays.
The best way is to split it into [7,2,5] and [10,8],
where the largest sum among the two subarrays is only 18.

The problem can be solved by using binary search, which is a quite brilliant way. If m equals length of the array, the largest sum should be the maximum among the elements. If m equals 1, then it should be the sum of all elements in the array. Now the maximum sum of a subarray should be between these two numbers.

The idea is to using binary search and find this minimum maximum sum. We set left to the maximum element of the array and right to the sum of the array. First we choose the mid of these two and find if there exist m subarrays that have largest sum less than or equal to mid. If we can find such split, we know we probably can do better. So we set right to mid. We keep on doing this until we find a value that we cannot get by splitting the array to m subarrays, i.e., the number is too small that we need to split the array further more. Now we increase left to mid + 1. When left = right, we find the number.


[7, 2, 5, 10, 8] m = 2

left = 10, right = 32, mid = 21 => [7, 2, 5], [10, 8]

left = 10, right = 21, mid = 15 => [7, 2], [10, 5],[8]

left = 16, right = 21, mid = 18 => [7, 2], [10, 8]

left = 16, right = 18, mid = 17 => [7, 2], [10, 5],[8]

left = 18, right = 18 => return 18


(Just a guess), the minimum maximum sum should be the mid number when one of the subarrays has the sum equal to it.


public int splitArray(int[] nums, int m) {
        if (nums.length == 0) {
            return 0;
        }
        int left = 0, right = 0;
        for (int n : nums) {
            left = Math.max(left, n);
            right += n;
        }
        if (m == nums.length) {
            return left;
        }
        if (m == 1) {
            return right;
        }
        while (left < right) {
            int mid = (left + right) / 2;
            if (canSplit(nums, mid, m)) {
                right = mid;
            } else {
                left = mid + 1;
            }
        }
        return left;
    }
    
    private boolean canSplit(int[] nums, int maxVal, int m) {
        int countSub = 1;
        int currSum = 0;
        for (int n : nums) {
            currSum += n;
            if (currSum > maxVal) {
                currSum = n;
                countSub++;
                if (countSub > m) {
                    return false;
                }
            }
        }
        return true;
    }


3 comments:


  1. The development of artificial intelligence (AI) has propelled more programming architects, information scientists, and different experts to investigate the plausibility of a vocation in machine learning. Notwithstanding, a few newcomers will in general spotlight a lot on hypothesis and insufficient on commonsense application. IEEE final year projects on machine learning In case you will succeed, you have to begin building machine learning projects in the near future.

    Projects assist you with improving your applied ML skills rapidly while allowing you to investigate an intriguing point. Furthermore, you can include projects into your portfolio, making it simpler to get a vocation, discover cool profession openings, and Final Year Project Centers in Chennai even arrange a more significant compensation.


    Data analytics is the study of dissecting crude data so as to make decisions about that data. Data analytics advances and procedures are generally utilized in business ventures to empower associations to settle on progressively Python Training in Chennai educated business choices. In the present worldwide commercial center, it isn't sufficient to assemble data and do the math; you should realize how to apply that data to genuine situations such that will affect conduct. In the program you will initially gain proficiency with the specialized skills, including R and Python dialects most usually utilized in data analytics programming and usage; Python Training in Chennai at that point center around the commonsense application, in view of genuine business issues in a scope of industry segments, for example, wellbeing, promoting and account.

    ReplyDelete
  2. thank you for clear explanation with an example.

    ReplyDelete