返回介绍

solution / 0800-0899 / 0858.Mirror Reflection / README_EN

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

858. Mirror Reflection

中文文档

Description

There is a special square room with mirrors on each of the four walls. Except for the southwest corner, there are receptors on each of the remaining corners, numbered 0, 1, and 2.

The square room has walls of length p and a laser ray from the southwest corner first meets the east wall at a distance q from the 0th receptor.

Given the two integers p and q, return _the number of the receptor that the ray meets first_.

The test cases are guaranteed so that the ray will meet a receptor eventually.

 

Example 1:

Input: p = 2, q = 1
Output: 2
Explanation: The ray meets receptor 2 the first time it gets reflected back to the left wall.

Example 2:

Input: p = 3, q = 1
Output: 1

 

Constraints:

  • 1 <= q <= p <= 1000

Solutions

Solution 1

class Solution:
  def mirrorReflection(self, p: int, q: int) -> int:
    g = gcd(p, q)
    p = (p // g) % 2
    q = (q // g) % 2
    if p == 1 and q == 1:
      return 1
    return 0 if p == 1 else 2
class Solution {
  public int mirrorReflection(int p, int q) {
    int g = gcd(p, q);
    p = (p / g) % 2;
    q = (q / g) % 2;
    if (p == 1 && q == 1) {
      return 1;
    }
    return p == 1 ? 0 : 2;
  }

  private int gcd(int a, int b) {
    return b == 0 ? a : gcd(b, a % b);
  }
}
class Solution {
public:
  int mirrorReflection(int p, int q) {
    int g = __gcd(p, q);
    p = (p / g) % 2;
    q = (q / g) % 2;
    if (p == 1 && q == 1) {
      return 1;
    }
    return p == 1 ? 0 : 2;
  }
};
func mirrorReflection(p int, q int) int {
  g := gcd(p, q)
  p = (p / g) % 2
  q = (q / g) % 2
  if p == 1 && q == 1 {
    return 1
  }
  if p == 1 {
    return 0
  }
  return 2
}

func gcd(a, b int) int {
  if b == 0 {
    return a
  }
  return gcd(b, a%b)
}
function mirrorReflection(p: number, q: number): number {
  const g = gcd(p, q);
  p = Math.floor(p / g) % 2;
  q = Math.floor(q / g) % 2;
  if (p === 1 && q === 1) {
    return 1;
  }
  return p === 1 ? 0 : 2;
}

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

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

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

发布评论

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