-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path768 Max Chunks To Make Sorted II.py
61 lines (50 loc) · 1.71 KB
/
768 Max Chunks To Make Sorted II.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/python3
"""
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].
"""
from typing import List
from collections import defaultdict, deque
class Solution:
def maxChunksToSorted(self, arr: List[int]) -> int:
"""
not necessarily distinct
sort and assign index
For the smae element, the right ones should get larget assigned index
"""
A = sorted(arr)
hm = defaultdict(deque)
for i, e in enumerate(A):
hm[e].append(i)
proxy = []
for e in arr:
proxy.append(hm[e].popleft())
ret = 0
cur_max_idx = 0
for i, e in enumerate(proxy):
cur_max_idx = max(cur_max_idx, e)
if cur_max_idx == i:
ret += 1
return ret