356. Line Reflection
Problem Description
The problem deals with a set of points on a 2D plane and the goal is to determine if there is a line parallel to the y-axis that can reflect all points symmetrically. In essence, we have to find out whether we can draw a vertical line such that every point has a mirrored counterpart on the other side of the line. The set of points before and after reflecting them across this line should be identical, even if some points are repeated.
Intuition
To solve this problem, we must recognize that a reflection over a line parallel to the y-axis means that each point (x, y)
will have a mirrored point (x', y)
such that both points are equidistant from the line of reflection. This implies that the sum of the x-coordinates of the two points (x + x') will be equal to twice the x-coordinate of the reflection line.
We approach the solution by first finding the minimal (min_x
) and maximal (max_x
) x-coordinates among all given points. The line of reflection, if it exists, would be exactly halfway between these two values, so the sum s
for the reflection condition would be min_x + max_x
.
Next, we store all given points in a set for constant-time lookups. Then, for every point in our input, we check if its symmetric counterpart with respect to the potential line of reflection ((s - x, y)
) exists in our set. If all points satisfy this condition, the points are symmetric with respect to a line, and the function should return true
. Otherwise, no such line exists and we return false
.
Learn more about Math patterns.
Solution Approach
To implement the solution, we use a set data structure to store the points for efficient querying, as well as simple variables to keep track of the minimum and maximum x-coordinates.
The solution is straightforward in terms of algorithms and does not require any complex data structure manipulation or intricate patterns. It essentially involves the following steps:
- Initialize
min_x
to infinity andmax_x
to negative infinity. These will be used to track the minimum and maximum x-values of the given points. - Traverse all points in the input list.
- For each point
(x, y)
, updatemin_x
andmax_x
to keep track of the smallest and largest x-coordinates. - Add the point
(x, y)
to the setpoint_set
for efficient lookups later.
- For each point
- Calculate the sum
s
which is the potential reflection line's x-coordinate times two (s = min_x + max_x
). This is based on the principle that the line of reflection would be exactly in the middle of the leftmost and rightmost points. - Finally, confirm that each point
(x, y)
has its mirrored counterpart. This is done by checking if(s - x, y)
is present inpoint_set
for every(x, y)
in the list of points.- If all points have their mirrored counterparts in the set, return
true
. - If there is even a single point without a mirrored counterpart, return
false
.
- If all points have their mirrored counterparts in the set, return
The use of a set is crucial here as it allows us to verify the existence of the mirrored pairs in constant time (O(1)
), thus keeping the entire algorithm's time complexity to O(n)
, where n
is the number of points.
There are no particular algorithms used beyond basic iteration and set operations. Also, there are no complex logical patterns or mathematical formulas involved, just the straightforward application of the definition of a reflection over a vertical line.
Ready to land your dream job?
Unlock your dream job with a 2-minute evaluator for a personalized learning plan!
Start EvaluatorExample Walkthrough
Let's consider an example with the following set of points on a 2D plane: [(1, 1), (3, 1), (7, 1), (9, 1)]
. Our goal is to determine if there exists a line parallel to the y-axis that reflects all these points symmetrically.
-
First, we initialize
min_x
to infinity andmax_x
to negative infinity to keep track of the minimum and maximum x-coordinates of the points. -
Now we traverse our points list:
- For point
(1, 1)
, we updatemin_x
to 1 (as 1 < infinity) andmax_x
to 1 (as 1 > -infinity). - For point
(3, 1)
,min_x
remains 1 andmax_x
is updated to 3. - For point
(7, 1)
,min_x
remains 1 andmax_x
is updated to 7. - For the last point
(9, 1)
,min_x
remains 1 andmax_x
is updated to 9. - Throughout the iteration, we also add each point to a set
point_set
for efficient lookups.
- For point
-
After the first traversal, we have
min_x = 1
andmax_x = 9
. The sums
which represents twice the possible line of reflection's x-coordinate iss = min_x + max_x = 1 + 9 = 10
. -
For the symmetry check, we traverse the list again:
- Point
(1, 1)
has a counterpart(9, 1)
becauses - x = 10 - 1 = 9
, and(9, 1)
is inpoint_set
. - Point
(3, 1)
should be mirrored with point(7, 1)
becauses - x = 10 - 3 = 7
, and(7, 1)
is indeed inpoint_set
. - Since points
(7, 1)
and(9, 1)
have already been paired with their counterparts, the conditions are satisfied for all points.
- Point
All points have a mirrored counterpart with respect to the line whose x-coordinate is s/2
, which in this case is 5
. Since each point (x, y)
has a matching point (s - x, y)
in the set, we can conclude that it's possible to draw a vertical line parallel to the y-axis at x = 5
that reflects all the points symmetrically. Therefore, the function should return true
for this example.
Solution Implementation
1class Solution:
2 def isReflected(self, points: List[List[int]]) -> bool:
3 # Initialize minimum and maximum X to positive and negative infinity respectively.
4 min_x, max_x = float('inf'), float('-inf')
5 point_set = set() # Create a set to store unique points.
6
7 # Iterate over all points to find the min and max X values and add points to the set.
8 for x, y in points:
9 min_x = min(min_x, x)
10 max_x = max(max_x, x)
11 point_set.add((x, y))
12
13 # Calculate the sum of min and max X, which should be equal to twice the X value of the reflection line.
14 reflection_sum = min_x + max_x
15
16 # Check if for each point (x, y), the reflected point across the Y-axis
17 # given by (reflection_sum - x, y) exists in the point set.
18 # The reflection across the Y-axis is defined by the line X = (min_x + max_x) / 2.
19 return all((reflection_sum - x, y) in point_set for x, y in points)
20
1class Solution {
2 public boolean isReflected(int[][] points) {
3 // Initialize the max and min X coordinates to extreme values.
4 final int MAX_VALUE = Integer.MAX_VALUE;
5 int minX = MAX_VALUE;
6 int maxX = Integer.MIN_VALUE;
7
8 // Using a set to store unique point representations.
9 Set<List<Integer>> pointSet = new HashSet<>();
10
11 // Iterate over all points to find the minX and maxX values,
12 // and add each point to the set.
13 for (int[] point : points) {
14 minX = Math.min(minX, point[0]);
15 maxX = Math.max(maxX, point[0]);
16 pointSet.add(List.of(point[0], point[1]));
17 }
18
19 // Calculate the sum of minX and maxX which is twice the X coordinate
20 // of the line of reflection.
21 int sum = minX + maxX;
22
23 // Check if each point has its reflected counterpart in the set.
24 for (int[] point : points) {
25 // If the reflected point is not found in the set, return false.
26 if (!pointSet.contains(List.of(sum - point[0], point[1]))) {
27 return false;
28 }
29 }
30
31 // If all points have their reflected counterpart, return true.
32 return true;
33 }
34}
35
1#include <vector>
2#include <set>
3#include <algorithm>
4using std::vector;
5using std::set;
6using std::min;
7using std::max;
8using std::pair;
9
10class Solution {
11public:
12 // Function to determine if a set of points reflects across a single vertical axis.
13 bool isReflected(vector<vector<int>>& points) {
14
15 // Constants to represent infinity and negative infinity.
16 const int INF = 1 << 30;
17
18 // Variables to store the minimum and maximum X-coordinates.
19 int minX = INF, maxX = -INF;
20
21 // A set to store unique points (pair of X and Y coordinates).
22 set<pair<int, int>> pointSet;
23
24 // Loop through all points to populate pointSet and find the minX and maxX.
25 for (auto& point : points) {
26 minX = min(minX, point[0]); // Update minX if current point's X is smaller.
27 maxX = max(maxX, point[0]); // Update maxX if current point's X is larger.
28 pointSet.insert({point[0], point[1]}); // Insert the point into the set.
29 }
30
31 // Sum of minX and maxX is the total which, when halved, gives the X-coordinate of the reflection axis.
32 int sumOfMinAndMaxX = minX + maxX;
33
34 // Iterate through all points to check if the reflected point exists.
35 for (auto& point : points) {
36 // Calculate the reflection of the current point across the reflection axis.
37 int reflectedX = sumOfMinAndMaxX - point[0];
38
39 // Check if the reflected point is not in the set. If it's not, the point array is not reflected.
40 if (!pointSet.count({reflectedX, point[1]})) {
41 return false;
42 }
43 }
44
45 // Return true if all points have their reflected counterparts.
46 return true;
47 }
48};
49
1// Importing arrays and sets from ECMAScript 6 (ES6) standard.
2import { Set } from "typescript-collections";
3
4// Function to determine if a set of points reflects across a single vertical axis.
5function isReflected(points: number[][]): boolean {
6
7 // Constants to represent infinity and negative infinity.
8 const INF: number = 1 << 30;
9
10 // Variables to store the minimum and maximum X-coordinates.
11 let minX: number = INF;
12 let maxX: number = -INF;
13
14 // A set to store unique points (tuple of X and Y coordinates).
15 let pointSet: Set<string> = new Set();
16
17 // Loop through all points to populate pointSet and find the minX and maxX.
18 for (const point of points) {
19 minX = Math.min(minX, point[0]); // Update minX if current point's X is smaller.
20 maxX = Math.max(maxX, point[0]); // Update maxX if current point's X is larger.
21
22 // Insert the point into the set as a string to ensure uniqueness.
23 pointSet.add(JSON.stringify({x: point[0], y: point[1]}));
24 }
25
26 // Sum of minX and maxX is the total, which, when halved, gives the X-coordinate of the reflection axis.
27 const sumOfMinAndMaxX: number = minX + maxX;
28
29 // Iterate through all points to check if the reflected point exists.
30 for (const point of points) {
31 // Calculate the reflection of the current point across the reflection axis.
32 const reflectedX: number = sumOfMinAndMaxX - point[0];
33
34 // Check if the reflected point is not in the set. If it's not, the point array is not reflected.
35 if (!pointSet.contains(JSON.stringify({x: reflectedX, y: point[1]}))) {
36 return false;
37 }
38 }
39
40 // Return true if all points have their reflected counterparts.
41 return true;
42}
43
Time and Space Complexity
Time Complexity
The time complexity of the given code can be analyzed as follows:
-
We iterate over all
n
points once to find the minimum (min_x
) and maximum (max_x
) x-coordinates. This requiresO(n)
time. -
We also add each point to the
point_set
. Since insertion into a set (implemented as a balanced binary search tree) takesO(log n)
time, addingn
points requiresO(n log n)
time. -
Then we check if each point has a reflected point in the
point_set
using the formula(s - x, y)
wheres
is the sum ofmin_x
andmax_x
. This step also iterates over alln
points and each lookup in a set is expected to beO(log n)
on average, leading to anotherO(n log n)
time operation.
Therefore, the overall time complexity is O(n) + O(n log n) + O(n log n) = O(n log n)
where n
is the number of input points.
Space Complexity
The space complexity of the code can be considered as follows:
-
We create a set,
point_set
, which in the worst case, will contain all input points if all points are unique. This leads to a space complexity ofO(n)
. -
No additional significant space is used in the algorithm.
Hence, the overall space complexity of the algorithm is O(n)
where n
is the number of input points.
Learn more about how to find time and space complexity quickly using problem constraints.
Which algorithm is best for finding the shortest distance between two points in an unweighted graph?
Recommended Readings
Math for Technical Interviews How much math do I need to know for technical interviews The short answer is about high school level math Computer science is often associated with math and some universities even place their computer science department under the math faculty However the reality is that you
LeetCode Patterns Your Personal Dijkstra's Algorithm to Landing Your Dream Job The goal of AlgoMonster is to help you get a job in the shortest amount of time possible in a data driven way We compiled datasets of tech interview problems and broke them down by patterns This way we
Recursion Recursion is one of the most important concepts in computer science Simply speaking recursion is the process of a function calling itself Using a real life analogy imagine a scenario where you invite your friends to lunch https algomonster s3 us east 2 amazonaws com recursion jpg You first
Want a Structured Path to Master System Design Too? Don’t Miss This!