-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMaximumOnes.java
52 lines (50 loc) · 1.41 KB
/
MaximumOnes.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
/*https://practice.geeksforgeeks.org/problems/row-with-max-1s0023/1*/
class Solution {
int rowWithMax1s(int arr[][], int n, int m) {
int minIndex = m;
int row = -1;
for (int i = 0; i < n; ++i)
{
//till the column value is 1 in ith row
while (minIndex > 0 && arr[i][minIndex-1] != 0)
{
//keep updating row and leftmost index
row = i;
--minIndex;
}
if (minIndex == 0) return row;
}
return row;
}
}
class Sol
{
public static int maxOnes (int arr[][], int N, int M)
{
// your code here
int minIndex = M;
int row = -1, low = -1, high = -1, mid = -1;
for (int i = 0; i < N; ++i)
{
if (minIndex == M || arr[i][minIndex] == 1)
{
low = 0;
high = M-1;
while (low <= high)
{
mid = low+((high-low))/2;
if (arr[i][mid] == 1 && (mid == 0 || arr[i][mid-1] == 0)) break;
else if (arr[i][mid] == 1) high = mid-1;
else low = mid+1;
}
if (mid < minIndex)
{
row = i;
minIndex = mid;
}
}
if (minIndex == 0) return row;
}
return row;
}
}