Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Top K Elements , Java Patterns, Integer Overflow in Max Heap Comparator for K Closest Points to Origin, problem on LeetCode 973. #21

Open
Arnab7456 opened this issue Jan 16, 2025 · 0 comments

Comments

@Arnab7456
Copy link

The original comparator:
PriorityQueue<int[]> maxHeap = new PriorityQueue<>((a, b) -> getDistance(b) - getDistance(a));
Here,
getDistance(b) - getDistance(a) could result in overflow if the distances are large, causing incorrect behavior or errors.
Proposed Solution:
To avoid the risk of overflow, it is recommended that the comparator be changed to

Integer.compare():


PriorityQueue<int[]> maxHeap = new PriorityQueue<>((a, b) -> Integer.compare(getDistance(b), getDistance(a)));

This change ensures that the distances are compared safely without the risk of overflow.

Steps to Reproduce:
Use the provided solution for the "K Closest Points to Origin" problem on LeetCode 973.
Test the solution with a large number of points (e.g., with coordinates in the range of [-10^4, 10^4]).
Observe that the original comparator could result in integer overflow due to the subtraction of large numbers.

Expected Behavior:
The solution should compare the distances correctly without any risk of overflow. The use of Integer.compare() ensures safe comparisons between distances.

Actual Behavior:
The current implementation can potentially cause overflow when the distances are large.

Arnab7456 added a commit to Arnab7456/awesome-leetcode-resources that referenced this issue Jan 16, 2025
The current implementation can potentially cause overflow when the distances are large.
issue solve Id: ashishps1#21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant