leetcode:Max Chunks To Make Sorted I&&II

栏目: 编程工具 · 发布时间: 6年前

内容简介:leetcode No768:题目的意思是,给一个数组排序前:

题目一:Max Chunks To Make Sorted II

1、题目链接

leetcode No768: https://leetcode.com/problems/max-chunks-to-make-sorted-ii/

This question is the same as "Max Chunks to Make Sorted" except the integers of the given array are not necessarily distinct, the input array could be up to length 2000, and the elements could be up to 10**8.

Given an array arr of integers (not necessarily distinct), we split the array into some number of "chunks" (partitions), and individually sort each chunk.  After concatenating them, the result equals the sorted array.

What is the most number of chunks we could have made?

Example 1:

Input: arr = [5,4,3,2,1]
Output: 1
Explanation:
Splitting into two or more chunks will not return the required result.
For example, splitting into [5, 4], [3, 2, 1] will result in [4, 5, 1, 2, 3], which isn't sorted.
Example 2:

Input: arr = [2,1,3,4,4]
Output: 4
Explanation:
We can split into two chunks, such as [2, 1], [3, 4, 4].
However, splitting into [2, 1], [3], [4], [4] is the highest number of chunks possible.
Note:

arr will have length in range [1, 2000].
arr[i] will be an integer in range [0, 10**8].

2、Solution

题目的意思是,给一个数组 a 我们将它切成几个小的数组 a1 , a2 , a3 ... an ,在每个小的数组 ax 内排好序,就可以得到数组 a 排好序的结果。

排序前: a = a1 + a2 + a3 + ... ax... + an
排序后: sort(a) = sort(a1) + sort(a2) + sort(a3)+ ... sort(ax)... + sort(an)

排序 后的结果来看, a1 里的数都不大于 a2 里的数,依此类推...

因此,我们可以这样来找到一个切分,切分左边的数,一定不大于右边的所有数,也就是,切分点左边的最大值,不大于右边的最小值。

我们遍历数组,就判断该点左边(包含该点)的最大值,和其右边的最小值比较,如果不大于,这该点便可以作为分割点。

golang实现代码如下

func maxChunksToSorted(arr []int) int {
    res := 0
    minRight := make([]int ,len(arr))
    maxLeft:=arr[0]
    minRight[len(arr)-1] = arr[len(arr)-1]
   //维护一个数组,保存其右边最小的值
    for i:=len(arr)-2;i>=0;i--{
        minRight[i] = min(minRight[i+1],arr[i])
    }
    //遍历数组,将左边的最大值和左边的最小值比较
    for i:=0;i<len(arr)-1;i++{
        maxLeft = max(maxLeft,arr[i])
        if (maxLeft<=minRight[i+1]){
            res ++
        }
        
    }
    return res+1
    
}
//返回两数较小的
func min(a int, b int) int{
    if a < b{
        return a
    }
    return b
}

//返回两数较大的
func max(a int, b int) int{
    if a > b{
        return a
    }
    return b
}

题目二:Max Chunks To Make Sorted

1、题目链接:

leetcode No 679: https://leetcode.com/problems/max-chunks-to-make-sorted/

Given an array arr that is a permutation of [0, 1, ..., arr.length - 1], we split the array into some number of "chunks" (partitions), and individually sort each chunk.  After concatenating them, the result equals the sorted array.

What is the most number of chunks we could have made?

Example 1:

Input: arr = [4,3,2,1,0]
Output: 1
Explanation:
Splitting into two or more chunks will not return the required result.
For example, splitting into [4, 3], [2, 1, 0] will result in [3, 4, 0, 1, 2], which isn't sorted.
Example 2:

Input: arr = [1,0,2,3,4]
Output: 4
Explanation:
We can split into two chunks, such as [1, 0], [2, 3, 4].
However, splitting into [1, 0], [2], [3], [4] is the highest number of chunks possible.
Note:

arr will have length in range [1, 10].
arr[i] will be a permutation of [0, 1, ..., arr.length - 1].

2、Solution

题目二其实是题目一的特例,完全复用题目一的解法也没有问题。

如题目一,给一个数组 a 我们将它切成几个小的数组 a1 , a2 , a3 ... an ,在每个小的数组 ax 内排好序,就可以得到数组 a 排好序的结果。

排序前: a = a1 + a2 + a3 + ... ax... + an
排序后: sort(a) = sort(a1) + sort(a2) + sort(a3)+ ... sort(ax)... + sort(an)
其中: sort(a) = [0, 1, ..., arr.length - 1]
sort(ax) = [0,1,2,....k]

数组 ax 的最大值为 k ,ax数组个数为k。因此从左开始遍历,当左边数组的最大值等于索引值时,即是满足的分割点。

例如:

original: 0, 2, 1, 4, 3, 5, 7, 6
max:      0, 2, 2, 4, 4, 5, 7, 7
sorted:   0, 1, 2, 3, 4, 5, 6, 7
index:    0, 1, 2, 3, 4, 5, 6, 7

go实现的代码如下

func maxChunksToSorted(arr []int) int {
    var res int
    m := 0
    for i:=0;i<len(arr);i++{
        m = max(m,arr[i])
        if (m == i){
            res++
        }
    }
    return res
}

func max(a int,b int) int{
    if a > b {
        return a
    }
    return b
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

在线

在线

王坚 / 中信出版集团 / 2018-5-21 / 59.00元

50多万年前的关键词是光明与黑暗, 50多年前的关键词是数字和模拟, 而今天的关键词是在线与离线。 移动互联网是比传统互联网在线程度更深的互联网。对于真正成熟的互联网来说,手机只是诸多的在线设备之一,慢慢地,每一个设备都会变成互联网的终端。 真正的竞争力,是把所有人都可能拥有的东西变成财富,让沙子变成硅。大家都把大数据当作金矿,想要掘金。但在王坚看来,大数据的厉害之处是把沙......一起来看看 《在线》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

MD5 加密
MD5 加密

MD5 加密工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具