-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path2.cpp
33 lines (30 loc) · 857 Bytes
/
2.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
#include <bits/stdc++.h>
using namespace std;
vector<pair<int, int>> closestLocations(int K, int **allLocations, int truckCapacity)
{
vector<pair<int, int>> ans;
if (K == truckCapacity)
{
for (int i = 0; i < truckCapacity; i++)
ans.push_back({allLocations[i][0], allLocations[i][1]});
return ans;
}
map<double, vector<pair<int, int>>> m;
for (int i = 0; i < truckCapacity; i++)
{
auto distance = sqrt(allLocations[i][0] * allLocations[i][0] + allLocations[i][1] * allLocations[i][1]);
m[distance].push_back({allLocations[i][0], allLocations[i][1]});
}
for (auto itr : m)
{
if (K <= 0)
break;
else
for (auto c : itr.second)
{
ans.push_back(c);
K--;
}
}
return ans;
}