[Leetcode] 858. Mirror Reflection (Python)

[Leetcode] 858. Mirror Reflection

题目大意

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.

Return the number of the receptor that the ray meets first. (It is guaranteed 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.
在这里插入图片描述

题目解析

下面图示分别展示 p:q = 3:1,4:1, 3:2 的情况,对square room进行相应扩展。

在这里插入图片描述
由此,根据p和q的关系,进行总结:
p为奇数,q为奇数时,到达接收器1。
p为奇数,q为偶数时,到达接收器0。
p为偶数,q为奇数时,到达接收器2。

代码

class Solution:
    def mirrorReflection(self, p: int, q: int) -> int:
        while p%2==0 and q%2==0:
            p /= 2
            q /= 2
        if p%2 == 0 and q%2 == 1:
            return 2
        if p%2 == 1 and q%2 == 0:
            return 0
        return 1

参考: https://www.cnblogs.com/grandyang/p/10646040.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值