-
Notifications
You must be signed in to change notification settings - Fork 564
Expand file tree
/
Copy path22. Partition Array into Disjoint Intervals.cpp
More file actions
52 lines (42 loc) · 1.16 KB
/
22. Partition Array into Disjoint Intervals.cpp
File metadata and controls
52 lines (42 loc) · 1.16 KB
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
/*
Partition Array into Disjoint Intervals
=======================================
Given an array nums, partition it into two (contiguous) subarrays left and right so that:
Every element in left is less than or equal to every element in right.
left and right are non-empty.
left has the smallest possible size.
Return the length of left after such a partitioning. It is guaranteed that such a partitioning exists.
Example 1:
Input: nums = [5,0,3,8,6]
Output: 3
Explanation: left = [5,0,3], right = [8,6]
Example 2:
Input: nums = [1,1,1,0,6,12]
Output: 4
Explanation: left = [1,1,1,0], right = [6,12]
Note:
2 <= nums.length <= 30000
0 <= nums[i] <= 106
It is guaranteed there is at least one way to partition nums as described.
*/
class Solution
{
public:
int partitionDisjoint(vector<int> &A)
{
int n = A.size();
vector<int> left(n, 0), right(n, 0);
left[0] = A[0];
right[n - 1] = A[n - 1];
for (int i = 1; i < n; ++i)
left[i] = max(left[i - 1], A[i]);
for (int i = n - 2; i >= 0; --i)
right[i] = min(right[i + 1], A[i]);
for (int i = 1; i < n; ++i)
{
if (left[i - 1] <= right[i])
return i;
}
return -1;
}
};