首页 > 其他 > 详细

858. Mirror Reflection

时间:2019-05-18 23:31:13      阅读:130      评论:0      收藏:0      [点我收藏+]

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 01, 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.

技术分享图片技术分享图片

 

Note:

  1. 1 <= p <= 1000
  2. 0 <= q <= p

 

Approach #1: Math. [Java]

class Solution {
    public int mirrorReflection(int p, int q) {
        while (p % 2 == 0 && q % 2 == 0) {
            p /= 2;
            q /= 2;
        }
        if (p % 2 == 0) return 2;
        else if (q % 2 == 0) return 0;
        else return 1;
    }
}

  

Analysis:

技术分享图片

To show the mirror effect, we can....

 

Reference:

https://leetcode.com/problems/mirror-reflection/discuss/141765/Java-short-solution-with-a-sample-drawing

 

858. Mirror Reflection

原文:https://www.cnblogs.com/ruruozhenhao/p/10887470.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!