-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmountainArray.txt
73 lines (63 loc) · 2.45 KB
/
mountainArray.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
1095. Find in Mountain Array
(This problem is an interactive problem.)
You may recall that an array arr is a mountain array if and only if:
arr.length >= 3
There exists some i with 0 < i < arr.length - 1 such that:
arr[0] < arr[1] < ... < arr[i - 1] < arr[i]
arr[i] > arr[i + 1] > ... > arr[arr.length - 1]
Given a mountain array mountainArr, return the minimum index such that mountainArr.get(index) == target.
If such an index does not exist, return -1.
You cannot access the mountain array directly. You may only access the array using a MountainArray interface:
MountainArray.get(k) returns the element of the array at index k (0-indexed).
MountainArray.length() returns the length of the array.
Submissions making more than 100 calls to MountainArray.get will be judged Wrong Answer.
Also, any solutions that attempt to circumvent the judge will result in disqualification.
class Solution {
public:
int findInMountainArray(int target, MountainArray &mountainArr) {
int n = mountainArr.length();
int left = 0, right = n - 1;
while (left < right) {
int mid = left + (right - left) / 2;
int midVal = mountainArr.get(mid);
int nextVal = mountainArr.get(mid + 1);
if (midVal < nextVal) {
left = mid + 1;
} else {
right = mid;
}
}
int peakIndex = left;
if (mountainArr.get(peakIndex) == target) {
return peakIndex;
}
int leftResult = binarySearch(target, mountainArr, 0, peakIndex, true);
if (leftResult != -1) {
return leftResult;
}
int rightResult = binarySearch(target, mountainArr, peakIndex, n - 1, false);
return rightResult;
}
int binarySearch(int target, MountainArray &mountainArr, int left, int right, bool increasing) {
while (left <= right) {
int mid = left + (right - left) / 2;
int midVal = mountainArr.get(mid);
if (midVal == target) {
return mid;
} else if (midVal < target) {
if (increasing) {
left = mid + 1;
} else {
right = mid - 1;
}
} else {
if (increasing) {
right = mid - 1;
} else {
left = mid + 1;
}
}
}
return -1;
}
};