Sherlock and Moving Tiles

This problem was posted by darkshadows on HackerRank.

Problem

Two congruent squares or tiles are placed such that their bottom left corners coincide with the origin of the Cartesian plane and their sides are paralled to the axis. Let represent the length of one side of either square.

At time both squares start moving along the line with velocities and . Let represent the area of the intersection between the two squares at any given time.

We need to solve for given , , and . We can assume that the units of distance, time and velocity are meters, seconds and meters per second respecively.

Constraints

Solution

figure1figure2
Figure 1Figure 2

In order to solve the problem we need to focus on the bottom left and top right corners of the squares. Figure 2 shows represents the overall situation. Since the two squares are moving at different speeds the area in red will decrease over time until eventually there is no intersection at all. Let's assume that . The area of interest is the square bounded by the corners and . Point is the top right corner of and point is the bottom left corner of .

So how do we find the position of an individual square's corners? Remember, the bottom left corners of both squares coincide with the origin at time . If the square moves along the line with velocity , then by time it has traveled a total distance of . Let and denote the bottom left and top right corners respectively. Since those points always intersect with the line , an equation like may actually mean .

Equation for Equation for
Equation for Equation for

After solving for all our points of interest, we can finally determine the time at which the overlapping area would be . Also note that we can remove the assumption of by taking the absolute value of .

Equation for

Notes

If then the numerator of our equation evaluates to zero, which results in . This makes sense since initially both squares are in the same position and their sizes are also identical.

If we want to determine the exact time that the two squares no longer overlap, then we can set and our equation reduces to .