-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind Transition Point.cpp
48 lines (45 loc) · 972 Bytes
/
Find Transition Point.cpp
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
//{ Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution
{
public:
void solve(int &firstOcc,int arr[],int n){
int start=0;
int end=n-1;
while(start<=end){
int mid=start+(end-start)/2;
if(arr[mid]==1){
firstOcc=mid;
end=mid-1;
}else if(arr[mid]==0){
start=mid+1;
}
}
}
int transitionPoint(int arr[], int n) {
int firstOcc=-1;
solve(firstOcc,arr,n);
return firstOcc;
// code here
}
};
//{ Driver Code Starts.
int transitionPoint(int arr[], int n);
int main() {
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
int a[n], i;
for (i = 0; i < n; i++) {
cin >> a[i];
}
Solution ob;
cout << ob.transitionPoint(a, n) << endl;
}
return 0;
}
// } Driver Code Ends