返回介绍

solution / 2400-2499 / 2470.Number of Subarrays With LCM Equal to K / README_EN

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

2470. Number of Subarrays With LCM Equal to K

中文文档

Description

Given an integer array nums and an integer k, return _the number of subarrays of _nums_ where the least common multiple of the subarray's elements is _k.

A subarray is a contiguous non-empty sequence of elements within an array.

The least common multiple of an array is the smallest positive integer that is divisible by all the array elements.

 

Example 1:

Input: nums = [3,6,2,7,1], k = 6
Output: 4
Explanation: The subarrays of nums where 6 is the least common multiple of all the subarray's elements are:
- [3,6,2,7,1]
- [3,6,2,7,1]
- [3,6,2,7,1]
- [3,6,2,7,1]

Example 2:

Input: nums = [3], k = 2
Output: 0
Explanation: There are no subarrays of nums where 2 is the least common multiple of all the subarray's elements.

 

Constraints:

  • 1 <= nums.length <= 1000
  • 1 <= nums[i], k <= 1000

Solutions

Solution 1: Enumeration

Enumerate each number as the first number of the subarray, and then enumerate each number as the last number of the subarray. Calculate the least common multiple of this subarray. If the least common multiple equals $k$, then increment the answer by one.

The time complexity is $O(n^2)$. Here, $n$ is the length of the array.

class Solution:
  def subarrayLCM(self, nums: List[int], k: int) -> int:
    n = len(nums)
    ans = 0
    for i in range(n):
      a = nums[i]
      for b in nums[i:]:
        x = lcm(a, b)
        ans += x == k
        a = x
    return ans
class Solution {
  public int subarrayLCM(int[] nums, int k) {
    int n = nums.length;
    int ans = 0;
    for (int i = 0; i < n; ++i) {
      int a = nums[i];
      for (int j = i; j < n; ++j) {
        int b = nums[j];
        int x = lcm(a, b);
        if (x == k) {
          ++ans;
        }
        a = x;
      }
    }
    return ans;
  }

  private int lcm(int a, int b) {
    return a * b / gcd(a, b);
  }

  private int gcd(int a, int b) {
    return b == 0 ? a : gcd(b, a % b);
  }
}
class Solution {
public:
  int subarrayLCM(vector<int>& nums, int k) {
    int n = nums.size();
    int ans = 0;
    for (int i = 0; i < n; ++i) {
      int a = nums[i];
      for (int j = i; j < n; ++j) {
        int b = nums[j];
        int x = lcm(a, b);
        ans += x == k;
        a = x;
      }
    }
    return ans;
  }
};
func subarrayLCM(nums []int, k int) (ans int) {
  for i, a := range nums {
    for _, b := range nums[i:] {
      x := lcm(a, b)
      if x == k {
        ans++
      }
      a = x
    }
  }
  return
}

func gcd(a, b int) int {
  if b == 0 {
    return a
  }
  return gcd(b, a%b)
}

func lcm(a, b int) int {
  return a * b / gcd(a, b)
}

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

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

发布评论

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