返回介绍

solution / 0800-0899 / 0878.Nth Magical Number / README_EN

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

878. Nth Magical Number

中文文档

Description

A positive integer is _magical_ if it is divisible by either a or b.

Given the three integers n, a, and b, return the nth magical number. Since the answer may be very large, return it modulo 109 + 7.

 

Example 1:

Input: n = 1, a = 2, b = 3
Output: 2

Example 2:

Input: n = 4, a = 2, b = 3
Output: 6

 

Constraints:

  • 1 <= n <= 109
  • 2 <= a, b <= 4 * 104

Solutions

Solution 1

class Solution:
  def nthMagicalNumber(self, n: int, a: int, b: int) -> int:
    mod = 10**9 + 7
    c = lcm(a, b)
    r = (a + b) * n
    return bisect_left(range(r), x=n, key=lambda x: x // a + x // b - x // c) % mod
class Solution {
  private static final int MOD = (int) 1e9 + 7;

  public int nthMagicalNumber(int n, int a, int b) {
    int c = a * b / gcd(a, b);
    long l = 0, r = (long) (a + b) * n;
    while (l < r) {
      long mid = l + r >>> 1;
      if (mid / a + mid / b - mid / c >= n) {
        r = mid;
      } else {
        l = mid + 1;
      }
    }
    return (int) (l % MOD);
  }

  private int gcd(int a, int b) {
    return b == 0 ? a : gcd(b, a % b);
  }
}
using ll = long long;

class Solution {
public:
  const int mod = 1e9 + 7;

  int nthMagicalNumber(int n, int a, int b) {
    int c = lcm(a, b);
    ll l = 0, r = 1ll * (a + b) * n;
    while (l < r) {
      ll mid = l + r >> 1;
      if (mid / a + mid / b - mid / c >= n)
        r = mid;
      else
        l = mid + 1;
    }
    return l % mod;
  }
};
func nthMagicalNumber(n int, a int, b int) int {
  c := a * b / gcd(a, b)
  const mod int = 1e9 + 7
  r := (a + b) * n
  return sort.Search(r, func(x int) bool { return x/a+x/b-x/c >= n }) % mod
}

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

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

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

发布评论

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