LeetCode – 768. 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] .

  • 제목:
    하나의 배열 에 중복 요소 가 있 을 수 있 습 니 다. 우 리 는 배열 을 '블록' (파 티 션) 으로 나 누고 모든 블록 을 따로 정렬 합 니 다.그것들 을 연결 한 후 결 과 는 정렬 된 배열 과 같다.최대 몇 개의 구역 으로 나 눌 수 있 는 지 물 어보 기 (블록)
    분석:
    이 문제 의 사고방식 은 LeetCode – 769. Max Chunks To Make Sorted 와 마찬가지 로 합 리 적 인 chunk 를 구분 하 는 조건 을 찾 는 것 이 관건 이다.
    중복 요소 가 있 기 때문에 누적 과 합 을 판단 하 는 방식 을 고려 할 수 있 습 니 다. 정렬 된 배열 의 앞 i 개 요소 의 누적 과 같은 원 배열 의 앞 i 개 수 를 누적 할 때 하나의 블록 으로 나 눌 수 있 습 니 다 ~
    구체 적 인 실현 은 다음 과 같다.
    public int name(int[] arr) {
    	int sum1 = 0, sum2 = 0, ans = 0;
    	int[] t = new int[arr.length];
    	System.arraycopy(arr, 0, t, 0, arr.length);;
    	Arrays.sort(t);
    	for(int i = 0; i < arr.length; i++) {
    		sum1 += t[i];
    		sum2 += arr[i];
    		if(sum1 == sum2) ans++;
    	}
    	return ans;
    }

    좋은 웹페이지 즐겨찾기