-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cpp
51 lines (44 loc) · 1.19 KB
/
Solution.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <algorithm>
#include <climits>
#include <functional>
#include <iostream>
#include <queue>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <vector>
using namespace std;
class Solution {
int distanceFromOrigin(vector<int> const& p) {
return (p[0] * p[0]) + (p[1] * p[1]);
}
public:
vector<vector<int>> kClosest(vector<vector<int>>& points, int k) {
int n = points.size();
// Pre-compute distances
vector<int> distances(n);
for (int i = 0; i < n; ++i) {
distances[i] = distanceFromOrigin(points[i]);
}
auto less = [&distances](int i, int j) {
return distances[i] < distances[j];
};
// Maintains the k closest points to the origin. If a new point has
// a smaller distance than the top of the heap, then pop and replace.
priority_queue<int, vector<int>, decltype(less)> maxHeap(less);
for (int i = 0; i < n; ++i) {
maxHeap.push(i);
if (maxHeap.size() > k) {
maxHeap.pop();
}
}
vector<vector<int>> result;
result.reserve(k);
while (!maxHeap.empty()) {
result.push_back(points[maxHeap.top()]);
maxHeap.pop();
}
return result;
}
};