-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path30_Longest_Subarray_With_Maximum_Bitwise_AND.cpp
More file actions
75 lines (57 loc) · 1.71 KB
/
Copy path30_Longest_Subarray_With_Maximum_Bitwise_AND.cpp
File metadata and controls
75 lines (57 loc) · 1.71 KB
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
// 2419. Longest Subarray With Maximum Bitwise AND
// You are given an integer array nums of size n.
// Consider a non-empty subarray from nums that has the maximum possible bitwise AND.
// In other words, let k be the maximum value of the bitwise AND of any subarray of nums. Then, only subarrays with a bitwise AND equal to k should be considered.
// Return the length of the longest such subarray.
// The bitwise AND of an array is the bitwise AND of all the numbers in it.
// A subarray is a contiguous sequence of elements within an array.
// Example 1:
// Input: nums = [1,2,3,3,2,2]
// Output: 2
// Explanation:
// The maximum possible bitwise AND of a subarray is 3.
// The longest subarray with that value is [3,3], so we return 2.
// Example 2:
// Input: nums = [1,2,3,4]
// Output: 1
// Explanation:
// The maximum possible bitwise AND of a subarray is 4.
// The longest subarray with that value is [4], so we return 1.
// Constraints:
// 1 <= nums.length <= 105
// 1 <= nums[i] <= 106
class Solution
{
public:
int longestSubarray(std::vector<int> &nums)
{
if (nums.empty())
{
return 0;
}
int maxVal = 0;
for (int num : nums)
{
if (num > maxVal)
{
maxVal = num;
}
}
int maxLen = 0;
int currentLen = 0;
for (int num : nums)
{
if (num == maxVal)
{
currentLen++;
}
else
{
maxLen = std::max(maxLen, currentLen);
currentLen = 0;
}
}
// 3. Final check for a trailing streak.
return std::max(maxLen, currentLen);
}
};