-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMaximumSubArrayWithGivenSum
65 lines (62 loc) · 1.66 KB
/
MaximumSubArrayWithGivenSum
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
import java.util.*;
public class Solution {
public static void main(String[] args) {
int arr = firstNegative(new int[] {4,1,1,1,2,3,5}, 7, 5);
System.out.print(arr);
}
public static int firstNegative(int[] arr, int n, int k) {
// Write your code here.
int max =0, sum = 0;
int start=0,end=0;
while(end < n)
{
sum += arr[end];
System.out.println("SUm " + sum);
if(sum > k)
{
while(sum > k)
sum -= arr[start++];
}
if(sum == k)
{
max = Math.max(max, end - start + 1);
System.out.println("Max " + max + "end, start " + end +" " + start);
}
end++;
}
return max;
}
/* More optimized
* public static int[] firstNegative(int[] arr, int n, int k) {
// Write your code here.
Queue<Integer> l = new LinkedList<>();
int res[] = new int[n - k + 1];
int start=0,end=0;
for(; end<k-1;end++)
{
while(l.size() > 0 && l.peek() < arr[end])
{
l.poll();
}
//Calculation
l.add(arr[end]);
}
while(end < n)
{
while(l.size() > 0 && l.peek() < arr[end])
{
l.poll();
}
//Calculation
l.add(arr[end++]);
res[start] = l.peek();
if(arr[start] == l.peek())
{
l.poll();
}
start++;
}
return res;
}
*/
}