-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathFindInMountainArray.java
76 lines (75 loc) · 2.29 KB
/
FindInMountainArray.java
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
74
75
76
/*https://leetcode.com/problems/find-in-mountain-array/*/
class Solution {
public int findInMountainArray(int target, MountainArray mountainArr) {
int n = mountainArr.length(), low = 1, high = n-2, peakIndex = -1;
int[] cache = new int[n];
Arrays.fill(cache,-1);
while (low <= high)
{
int mid = low+(high-low)/2;
int midElem, leftElem, rightElem;
if (cache[mid] == -1)
midElem = mountainArr.get(mid);
else midElem = cache[mid];
if (cache[mid-1] == -1)
leftElem = mountainArr.get(mid-1);
else leftElem = cache[mid-1];
if (cache[mid+1] == -1)
rightElem = mountainArr.get(mid+1);
else rightElem = cache[mid+1];
cache[mid] = midElem;
cache[mid-1] = leftElem;
cache[mid+1] = rightElem;
if (midElem > leftElem && midElem > rightElem)
{
peakIndex = mid;
break;
}
else if (midElem > leftElem && midElem < rightElem)
low = mid+1;
else high = mid-1;
}
low = 0;
high = peakIndex;
int index = -1;
while (low <= high)
{
int mid = low+(high-low)/2;
int midElem;
if (cache[mid] == -1)
midElem = mountainArr.get(mid);
else midElem = cache[mid];
cache[mid] = midElem;
if (midElem == target)
{
index = mid;
break;
}
else if (midElem > target)
high = mid-1;
else low = mid+1;
}
if (index != -1) return index;
low = peakIndex;
high = n-1;
index = -1;
while (low <= high)
{
int mid = low+(high-low)/2;
int midElem;
if (cache[mid] == -1)
midElem = mountainArr.get(mid);
else midElem = cache[mid];
cache[mid] = midElem;
if (midElem == target)
{
index = mid;
break;
}
else if (midElem > target)
low = mid+1;
else high = mid-1;
}
return index;
}
}