410. Split Array Largest Sum

Description

<nav class="tab-view hide-scrollbar" style="box-sizing: border-box; display: block; overflow-y: hidden; overflow-x: auto; white-space: nowrap; margin-top: 32px;">Solution</nav>

Pick One


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:
If n is the length of array, assume the following constraints are satisfied:

  • 1 ≤ n ≤ 1000
  • 1 ≤ m ≤ min(50, n)

Examples:

<pre style="box-sizing: border-box; overflow: auto; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 13px; display: block; padding: 9.5px; margin: 0px 0px 10px; line-height: 1.42857; color: rgb(51, 51, 51); word-break: break-all; word-wrap: break-word; background-color: rgb(245, 245, 245); border: 1px solid rgb(204, 204, 204); border-radius: 4px;">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.</pre>

Solution

DFS, time O(n ^ m) (TLE), space O(n)

直观的解法,但会超时。

class Solution {
    private int maxSum;
    
    public int splitArray(int[] nums, int m) {
        maxSum = Integer.MAX_VALUE;
        dfs(nums, 0, Integer.MIN_VALUE, m);
        return maxSum;
    }
    
    public void dfs(int[] nums, int start, int max, int m) {
        if (start == nums.length) {
            if (m == 0) {
                maxSum = Math.min(maxSum, max);
            }
            return;
        }
        
        if (nums.length - start < m) {
            return;
        }
        
        int sum = 0;
        for (int i = start; i < nums.length; ++i) {
            sum += nums[i];
            max = Math.max(max, sum);
            dfs(nums, i + 1, max, m - 1);
        }
    }
}

DP, time O(n ^ 2 * m), space O(n * m)

这道题让我想起了算法导论上的一道切绳子?的题。可以用二维dp去做,dp[i][j]表示将nums中前i个元素split成j段的maxSum。

注意dp[][]的初始化!

class Solution {
    public int splitArray(int[] nums, int m) {
        int n = nums.length;
        int[][] dp = new int[n + 1][m + 1];
        for (int [] row : dp) {
            Arrays.fill(row, Integer.MAX_VALUE);    // important
        }
        
        dp[0][0] = 0;
        
        for (int i = 1; i <= n; ++i) {
            for (int j = 1; j <= Math.min(i, m); ++j) {
                int sum = 0;
                for (int k = i; k >= j; --k) {
                    sum += nums[k - 1];
                    dp[i][j] = Math.min(Math.max(sum, dp[k - 1][j - 1]), dp[i][j]);
                }
            }
        }
        
        return dp[n][m];
    }
}

Binary search + Greedy, time O(n∗log(sum of array)), space O(1)

我还能说什么呢,这个解法是真牛逼。。

The answer is between maximum value of input array numbers and sum of those numbers.
Use binary search to approach the correct answer. We have l = max number of array; r = sum of all numbers in the array;Every time we do mid = (l + r) / 2;
Use greedy to narrow down left and right boundaries in binary search.

  1. Cut the array from left.
  2. Try our best to make sure that the sum of numbers between each two cuts (inclusive) is large enough but still less than mid.
  3. We'll end up with two results: either we can divide the array into more than m subarrays or we cannot.
  • If we can, it means that the mid value we pick is too small because we've already tried our best to make sure each part holds
    as many non-negative numbers as we can but we still have numbers left.
    So, it is impossible to cut the array into m parts and make sure each parts is no larger than mid. We should increase m.
    This leads to mid = l + 1;
  • If we can't, it is either we successfully divide the array into m parts and the sum of each part is less than mid,
    or we used up all numbers before we reach m. Both of them mean that we should lower mid because we need to find the minimum one. This leads to r = mid - 1;
class Solution {
    public int splitArray(int[] nums, int m) {
        long sum = 0;   // use long to avoid overflow
        int max = 0;
        for (int num : nums) {
            sum += num;
            max = Math.max(num, max);
        }
        
        long left = max;
        long right = sum;
        
        while (left <= right) {
            long mid = left + (right - left) / 2;
            
            if (!isValid(nums, m, mid)) {
                left = mid + 1;
            } else {
                right = mid - 1;
            }
        }
        
        return (int) left;
    }
    
    public boolean isValid(int[] nums, int m, long target) {
        long sum = 0;
        int count = 1;
        
        for (int num : nums) {
            sum += num;
            if (sum <= target) {
                continue;
            }
            
            sum = num;
            if (++count > m) {
                return false;
            }
        }
        
        return true;
    }
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,240评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,328评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,182评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,121评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,135评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,093评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,013评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,854评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,295评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,513评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,678评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,398评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,989评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,636评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,801评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,657评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,558评论 2 352

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,322评论 0 10
  • 更活泼开朗,更天真灵动,更澄澈单纯,才是向往的模样,不是吗。 松浦弥太郎在第一章第三节的部分写“给需要别人肯定的你...
    不着子阅读 131评论 0 0
  • “你们办公室方位不对,可能会有点不顺。” “看到对面楼立起来的架子吗?正对着你们幼儿园主位,财运被压制...
    梅森刘阅读 588评论 0 0
  • 鸡汤火锅 烤羊腿 红焖虾 粉蒸排骨 蚝汁鲍鱼 香煎鳊鱼 泥蒿炒鸭肫 彩椒牛肉 香辣花蛤 清炒时蔬 豌豆炒腊肠 八宝饭
    安_9fd3阅读 316评论 0 0