返回介绍

solution / 2400-2499 / 2419.Longest Subarray With Maximum Bitwise AND / README_EN

发布于 2024-06-17 01:03:06 字数 3858 浏览 0 评论 0 收藏 0

2419. Longest Subarray With Maximum Bitwise AND

中文文档

Description

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

Solutions

Solution 1: Quick Thinking

Due to the bitwise AND operation, the number will not get larger, so the maximum value is the maximum value in the array.

The problem can be transformed into finding the maximum number of consecutive occurrences of the maximum value in the array.

First, traverse the array once to find the maximum value, then traverse the array again to find the number of consecutive occurrences of the maximum value, and finally return this count.

The time complexity is $O(n)$, where $n$ is the length of the array.

class Solution:
  def longestSubarray(self, nums: List[int]) -> int:
    mx = max(nums)
    ans = cnt = 0
    for v in nums:
      if v == mx:
        cnt += 1
        ans = max(ans, cnt)
      else:
        cnt = 0
    return ans
class Solution {
  public int longestSubarray(int[] nums) {
    int mx = 0;
    for (int v : nums) {
      mx = Math.max(mx, v);
    }
    int ans = 0, cnt = 0;
    for (int v : nums) {
      if (v == mx) {
        ++cnt;
        ans = Math.max(ans, cnt);
      } else {
        cnt = 0;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int longestSubarray(vector<int>& nums) {
    int mx = *max_element(nums.begin(), nums.end());
    int ans = 0, cnt = 0;
    for (int v : nums) {
      if (v == mx) {
        ++cnt;
        ans = max(ans, cnt);
      } else {
        cnt = 0;
      }
    }
    return ans;
  }
};
func longestSubarray(nums []int) int {
  mx := slices.Max(nums)
  ans, cnt := 0, 0
  for _, v := range nums {
    if v == mx {
      cnt++
      ans = max(ans, cnt)
    } else {
      cnt = 0
    }
  }
  return ans
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文