返回介绍

solution / 1500-1599 / 1577.Number of Ways Where Square of Number Is Equal to Product of Two Numbers / README_EN

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

1577. Number of Ways Where Square of Number Is Equal to Product of Two Numbers

中文文档

Description

Given two arrays of integers nums1 and nums2, return the number of triplets formed (type 1 and type 2) under the following rules:

  • Type 1: Triplet (i, j, k) if nums1[i]2 == nums2[j] * nums2[k] where 0 <= i < nums1.length and 0 <= j < k < nums2.length.
  • Type 2: Triplet (i, j, k) if nums2[i]2 == nums1[j] * nums1[k] where 0 <= i < nums2.length and 0 <= j < k < nums1.length.

 

Example 1:

Input: nums1 = [7,4], nums2 = [5,2,8,9]
Output: 1
Explanation: Type 1: (1, 1, 2), nums1[1]2 = nums2[1] * nums2[2]. (42 = 2 * 8). 

Example 2:

Input: nums1 = [1,1], nums2 = [1,1,1]
Output: 9
Explanation: All Triplets are valid, because 12 = 1 * 1.
Type 1: (0,0,1), (0,0,2), (0,1,2), (1,0,1), (1,0,2), (1,1,2).  nums1[i]2 = nums2[j] * nums2[k].
Type 2: (0,0,1), (1,0,1), (2,0,1). nums2[i]2 = nums1[j] * nums1[k].

Example 3:

Input: nums1 = [7,7,8,3], nums2 = [1,2,9,7]
Output: 2
Explanation: There are 2 valid triplets.
Type 1: (3,0,2).  nums1[3]2 = nums2[0] * nums2[2].
Type 2: (3,0,1).  nums2[3]2 = nums1[0] * nums1[1].

 

Constraints:

  • 1 <= nums1.length, nums2.length <= 1000
  • 1 <= nums1[i], nums2[i] <= 105

Solutions

Solution 1

class Solution:
  def numTriplets(self, nums1: List[int], nums2: List[int]) -> int:
    cnt1 = Counter(nums1)
    cnt2 = Counter(nums2)
    ans = 0
    for a, x in cnt1.items():
      for b, y in cnt2.items():
        if a * a % b == 0:
          c = a * a // b
          if b == c:
            ans += x * y * (y - 1)
          else:
            ans += x * y * cnt2[c]
        if b * b % a == 0:
          c = b * b // a
          if a == c:
            ans += x * (x - 1) * y
          else:
            ans += x * y * cnt1[c]
    return ans >> 1
class Solution {
  public int numTriplets(int[] nums1, int[] nums2) {
    Map<Integer, Integer> cnt1 = new HashMap<>();
    Map<Integer, Integer> cnt2 = new HashMap<>();
    for (int v : nums1) {
      cnt1.put(v, cnt1.getOrDefault(v, 0) + 1);
    }
    for (int v : nums2) {
      cnt2.put(v, cnt2.getOrDefault(v, 0) + 1);
    }
    long ans = 0;
    for (var e1 : cnt1.entrySet()) {
      long a = e1.getKey(), x = e1.getValue();
      for (var e2 : cnt2.entrySet()) {
        long b = e2.getKey(), y = e2.getValue();
        if ((a * a) % b == 0) {
          long c = a * a / b;
          if (b == c) {
            ans += x * y * (y - 1);
          } else {
            ans += x * y * cnt2.getOrDefault((int) c, 0);
          }
        }
        if ((b * b) % a == 0) {
          long c = b * b / a;
          if (a == c) {
            ans += x * (x - 1) * y;
          } else {
            ans += x * y * cnt1.getOrDefault((int) c, 0);
          }
        }
      }
    }
    return (int) (ans >> 1);
  }
}
func numTriplets(nums1 []int, nums2 []int) (ans int) {
  cnt1 := map[int]int{}
  cnt2 := map[int]int{}
  for _, v := range nums1 {
    cnt1[v]++
  }
  for _, v := range nums2 {
    cnt2[v]++
  }
  for a, x := range cnt1 {
    for b, y := range cnt2 {
      if a*a%b == 0 {
        c := a * a / b
        if b == c {
          ans += x * y * (y - 1)
        } else {
          ans += x * y * cnt2[c]
        }
      }
      if b*b%a == 0 {
        c := b * b / a
        if a == c {
          ans += x * (x - 1) * y
        } else {
          ans += x * y * cnt1[c]
        }
      }
    }
  }
  ans /= 2
  return
}

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

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

发布评论

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