769. Max Chunks To Make Sorted

复制代码
package LeetCode_769

/**
 * 769. Max Chunks To Make Sorted
 * 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:
1. arr will have length in range [1, 10].
2. arr[i] will be a permutation of [0, 1, ..., arr.length - 1].
 * */
class Solution {
    /*
    * solution: use max array to keep tracking the maximum value until the current position,
    * for example:
    * 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
      chucks: [0],[2,1],[4,3],[5],[7,6]

      Time:O(n), Space:O(n)
    * */
    fun maxChunksToSorted(arr: IntArray): Int {
        if (arr == null || arr.isEmpty()) {
            return 0
        }
        var count = 0
        val n = arr.size
        val maxArray = IntArray(n)
        maxArray[0] = arr[0]
        for (i in 1 until n) {
            maxArray[i] = Math.max(maxArray[i - 1], arr[i])
        }
        for (i in 0 until n) {
            if (maxArray[i] == i) {
                count++
            }
        }
        return count
    }
}
复制代码

 

posted @   johnny_zhao  阅读(41)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
历史上的今天:
2019-01-30 android查询天气demo,基于mvp+kotlin+rxjava2+retrofit2
2019-01-30 gogo learning
点击右上角即可分享
微信分享提示