Longest Subarray With Maximum Bitwise AND

Tags : leetcode, array, bit-manipulation, cpp, medium

You are given an integer array nums of size n.

Consider a non-empty subarray from nums that has the maximum possible bitwise AND.

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.

Examples #

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 #

Solutions #

class Solution {
public:
    int longestSubarray(vector<int>& nums) {
        int n = nums.size();
        if(n==1) return 1;
        vector<int> andV(n-1,0);
        int maxAnd = nums[0];
        for(int i=1;i<n;i++){
            andV[i-1]=(nums[i-1]&nums[i]);
            maxAnd = max(maxAnd,nums[i]);
        }
        int tempCount=0, count=0;
        for(int i: andV){
            if(i==maxAnd){ tempCount++;}
            else {
                count = max(count, tempCount);
                tempCount=0;
            }
        }
        return max(count,tempCount)+1;
    }
};