LeetCode – 768. Max Chunks To Make Sorted II
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;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.