858. Mirror Reflection

Difficulty:
Related Topics:
Similar Questions:

    Problem

    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
    

    Note:

    Solution

    /**
     * @param {number} p
     * @param {number} q
     * @return {number}
     */
    var mirrorReflection = function(p, q) {
        if (q == 0) return 0;
        if (q == p) return 1;
    
        const gcd = (a, b) => {
            if (a == b) {
                return 1;
            } else if (a > b) {
                const r = a % b;
                return r ? gcd(b, r) : b;
            } else {
                const r = b & a;
                return r ? gcd(a, r) : a;
            }
        };
    
        const lcm = (a, b) => {
            return a * b / gcd(a, b);
        }
    
        const total = lcm(p, q);
        const xCoord = total / p;
        const yCoord = total / q;
    
        if (xCoord % 2 == 0) {
            if (yCoord % 2 == 0) {
                // We should never reach this
                return -1;
            } else {
                return 0;
            }
        } else {
            if (yCoord % 2 == 0) {
                return 2;
            } else {
                return 1;
            }
        }
    };
    

    Explain:

    nope.