Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 1.34 KB

Mirror_Reflection.md

File metadata and controls

51 lines (37 loc) · 1.34 KB

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.

Note:

  • 1 <= p <= 1000
  • 0 <= q <= p

Method:

class Solution(object):
    def mirrorReflection(self, p, q):
        """
        :type p: int
        :type q: int
        :rtype: int
        """
        
        def gcd(a, b):
            if a == 0:  
                return b  
            while b != 0:  
                if a > b:  
                    a = a-b  
                else:   
                    b = b-a  
            return a
        
        g=gcd(p, q)
        p/=g
        q/=g
        
        if (p+q)%2==0:
            return 1
        elif p%2:
            return 0
        else:
            return 2