<medium>LeetCode Problem -- 769. 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.

  • 分析:对于题目中所给的一个数组,要求对于这个数组进行从小到大排序,但不是直接排序,而是将这个数组分为几个部分,对着几个部分分别排序,使得结果为原数组排序的结果,要求找到最大的分段数目。
  • 思路一:观察这道题的特点发现,这道题最终要求的排序结果是0~n-1数字的升序排序,利用这个条件,可以发现我们要把对应数字移到对应下标处。因此可以每次判断两个数中较大的那个值,利用这个值和下标进行对比,找到这个值对应下标时就可以分一次段,最终得到最大的分割数目。
class Solution {
public:
    int maxChunksToSorted(vector<int>& arr) {
        int res = 0;
        int max_num = 0;
        for (int i = 0; i < arr.size(); i++) {
            max_num = max(max_num, arr[i]);
            if (max_num == i) res++;
        }
        return res;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值