返回介绍

solution / 2700-2799 / 2748.Number of Beautiful Pairs / README

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

2748. 美丽下标对的数目

English Version

题目描述

给你一个下标从 0 开始的整数数组 nums 。如果下标对 ij 满足 0 ≤ i < j < nums.length ,如果 nums[i]第一个数字nums[j]最后一个数字 互质 ,则认为 nums[i]nums[j] 是一组 美丽下标对

返回 nums美丽下标对 的总数目。

对于两个整数 xy ,如果不存在大于 1 的整数可以整除它们,则认为 xy 互质 。换而言之,如果 gcd(x, y) == 1 ,则认为 xy 互质,其中 gcd(x, y)xk 最大公因数

 

示例 1:

输入:nums = [2,5,1,4]
输出:5
解释:nums 中共有 5 组美丽下标对:
i = 0 和 j = 1 :nums[0] 的第一个数字是 2 ,nums[1] 的最后一个数字是 5 。2 和 5 互质,因此 gcd(2,5) == 1 。
i = 0 和 j = 2 :nums[0] 的第一个数字是 2 ,nums[2] 的最后一个数字是 1 。2 和 5 互质,因此 gcd(2,1) == 1 。
i = 1 和 j = 2 :nums[1] 的第一个数字是 5 ,nums[2] 的最后一个数字是 1 。2 和 5 互质,因此 gcd(5,1) == 1 。
i = 1 和 j = 3 :nums[1] 的第一个数字是 5 ,nums[3] 的最后一个数字是 4 。2 和 5 互质,因此 gcd(5,4) == 1 。
i = 2 和 j = 3 :nums[2] 的第一个数字是 1 ,nums[3] 的最后一个数字是 4 。2 和 5 互质,因此 gcd(1,4) == 1 。
因此,返回 5 。

示例 2:

输入:nums = [11,21,12]
输出:2
解释:共有 2 组美丽下标对:
i = 0 和 j = 1 :nums[0] 的第一个数字是 1 ,nums[1] 的最后一个数字是 1 。gcd(1,1) == 1 。
i = 0 和 j = 2 :nums[0] 的第一个数字是 1 ,nums[2] 的最后一个数字是 2 。gcd(1,2) == 1 。
因此,返回 2 。

 

提示:

  • 2 <= nums.length <= 100
  • 1 <= nums[i] <= 9999
  • nums[i] % 10 != 0

解法

方法一

class Solution:
  def countBeautifulPairs(self, nums: List[int]) -> int:
    cnt = [0] * 10
    ans = 0
    for x in nums:
      for y in range(10):
        if cnt[y] and gcd(x % 10, y) == 1:
          ans += cnt[y]
      cnt[int(str(x)[0])] += 1
    return ans
class Solution {
  public int countBeautifulPairs(int[] nums) {
    int[] cnt = new int[10];
    int ans = 0;
    for (int x : nums) {
      for (int y = 0; y < 10; ++y) {
        if (cnt[y] > 0 && gcd(x % 10, y) == 1) {
          ans += cnt[y];
        }
      }
      while (x > 9) {
        x /= 10;
      }
      ++cnt[x];
    }
    return ans;
  }

  private int gcd(int a, int b) {
    return b == 0 ? a : gcd(b, a % b);
  }
}
class Solution {
public:
  int countBeautifulPairs(vector<int>& nums) {
    int cnt[10]{};
    int ans = 0;
    for (int x : nums) {
      for (int y = 0; y < 10; ++y) {
        if (cnt[y] && gcd(x % 10, y) == 1) {
          ans += cnt[y];
        }
      }
      while (x > 9) {
        x /= 10;
      }
      ++cnt[x];
    }
    return ans;
  }
};
func countBeautifulPairs(nums []int) (ans int) {
  cnt := [10]int{}
  for _, x := range nums {
    for y := 0; y < 10; y++ {
      if cnt[y] > 0 && gcd(x%10, y) == 1 {
        ans += cnt[y]
      }
    }
    for x > 9 {
      x /= 10
    }
    cnt[x]++
  }
  return
}

func gcd(a, b int) int {
  if b == 0 {
    return a
  }
  return gcd(b, a%b)
}
function countBeautifulPairs(nums: number[]): number {
  const cnt: number[] = Array(10).fill(0);
  let ans = 0;
  for (let x of nums) {
    for (let y = 0; y < 10; ++y) {
      if (cnt[y] > 0 && gcd(x % 10, y) === 1) {
        ans += cnt[y];
      }
    }
    while (x > 9) {
      x = Math.floor(x / 10);
    }
    ++cnt[x];
  }
  return ans;
}

function gcd(a: number, b: number): number {
  if (b === 0) {
    return a;
  }
  return gcd(b, a % b);
}

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

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

发布评论

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