Max Chunks To Make Sorted

Description

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].

Solution

Idea: a range nums[i..j] can be a chunk if and only if nums[i..j] contains all numbers in [i, j]. Suppose nums[0..i-1] can be separated to some number of chunks, which means nums[0..i-1] contains all numbers in [0, i-1]. Then nums[i..j] contains all numbers in [i, j] if and only if max(nums[i..j]) = j.

class Solution {
public:
    int maxChunksToSorted(vector<int>& arr) {
        int count = 0;
        int curr_max = -1;
        for(int i = 0; i < arr.size(); ++i){
            if(curr_max < arr[i])
                curr_max = arr[i];
            if(curr_max == i)
                ++count;
        }
        return count;
    }
};

Last updated