-
Notifications
You must be signed in to change notification settings - Fork 0
/
1493. Longest Subarray of 1's After Deleting One Element.cpp
67 lines (64 loc) · 1.48 KB
/
1493. Longest Subarray of 1's After Deleting One Element.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
class Solution {
public:
int longestSubarray(vector<int>& nums)
{
//TLE Error 73/74 test cases
// int count = 0;
// for(int i = 0;i<nums.size();i++)
// {
// bool flag = false;
// if(nums[i]==0)
// {
// continue;
// }
// int temp = 0;
// for(int j = i;j<nums.size();j++)
// {
// temp += nums[j];
// if(nums[j]==0)
// {
// if(flag)
// {
// break;
// }
// else
// {
// flag = true;
// }
// }
// }
// count = max(count,temp);
// if(count==nums.size())
// {
// return count-1;
// }
// if(count>nums.size()/2)
// {
// return count;
// }
// }
// return count;
int a = 0,b=0,c=0;
for(int i = 0;i<nums.size();i++)
{
if(nums[i]==1)
{
a++;
}
else
{
b=a;
a=0;
}
c = max(c,b+a); //idk what this means
}
if(c==nums.size())
{
return c-1;
}
else
{
return c;
}
}
};