-
Notifications
You must be signed in to change notification settings - Fork 1
/
Day 22.2.txt
49 lines (37 loc) · 1.1 KB
/
Day 22.2.txt
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
915.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(int[] n) {
if(n.length==2)
return 1;
int i,j,k,l=0;
j=k=n[0];
for(i=1;i<n.length;i++)
{
if(j>n[i])
{
j=k;
l=i;
}
else
k=Math.max(k,n[i]);
}
return l+1;
}
}