前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Leetcode 1577. Number of Ways Where Square of Number Is Equal to Product of Two Numbers

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

作者头像
Tyan
发布2021-08-10 10:42:04
2630
发布2021-08-10 10:42:04
举报
文章被收录于专栏:SnailTyan

文章作者:Tyan 博客:noahsnail.com | CSDN | 简书

1. Description

2. Solution

解析: Version 1,分别计算两个数组的平方和以及所有组合乘积并统计对应值的个数,遍历每个数组平方和的个数,找到另一个数组对应的积的个数,二者相乘,加到三元组总个数中。Version 2进行进一步优化。

  • Version 1
代码语言:javascript
复制
class Solution:
    def numTriplets(self, nums1: List[int], nums2: List[int]) -> int:
        count = 0
        square1 = collections.defaultdict(int)
        square2 = collections.defaultdict(int)
        product1 = collections.defaultdict(int)
        product2 = collections.defaultdict(int)
        for x in nums1:
            temp = x ** 2
            square1[temp] = square1[temp] + 1
        for x in nums2:
            temp = x ** 2
            square2[temp] = square2[temp] + 1
        for i in range(len(nums1)):
            for j in range(i+1, len(nums1)):
                temp = nums1[i] * nums1[j]
                product1[temp] = product1[temp] + 1
        for i in range(len(nums2)):
            for j in range(i+1, len(nums2)):
                temp = nums2[i] * nums2[j]
                product2[temp] = product2[temp] + 1
        for k, v in square1.items():
            count += v * product2[k]
        for k, v in square2.items():
            count += v * product1[k]
        return count
  • Version 2
代码语言:javascript
复制
class Solution:
    def numTriplets(self, nums1: List[int], nums2: List[int]) -> int:
        count = 0
        product1 = collections.defaultdict(int)
        product2 = collections.defaultdict(int)
        for i in range(len(nums1)):
            for j in range(i+1, len(nums1)):
                temp = nums1[i] * nums1[j]
                product1[temp] = product1[temp] + 1
        for i in range(len(nums2)):
            for j in range(i+1, len(nums2)):
                temp = nums2[i] * nums2[j]
                product2[temp] = product2[temp] + 1
        for x in nums1:
            temp = x ** 2
            count += product2[temp]
        for x in nums2:
            temp = x ** 2
            square2[temp] = square2[temp] + 1
            count += product1[temp]
        return count

Reference

  1. https://leetcode.com/problems/number-of-ways-where-square-of-number-is-equal-to-product-of-two-numbers/
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021/08/06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 1. Description
  • 2. Solution
  • Reference
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档