The task says:
We draw N discs on a plane. The discs are numbered from 0 to N − 1. An array A of N non-negative integers, specifying the radiuses of the discs, is given. The J-th disc is drawn with its center at (J, 0) and radius A[J].
We say that the J-th disc and K-th disc intersect if J ≠ K and the J-th and K-th discs have at least one common point (assuming that the discs contain their borders).
The figure below shows discs drawn for N = 6 and A as follows:
https://imgur.com/SC78zxT
A[0] = 1
A[1] = 5
A[2] = 2
A[3] = 1
A[4] = 4
A[5] = 0
There are eleven (unordered) pairs of discs that intersect, namely:
discs 1 and 4 intersect, and both intersect with all the other discs;
disc 2 also intersects with discs 0 and 3.
Write a function:
int solution(vector<int> &A);
that, given an array A describing N discs as explained above, returns the number of (unordered) pairs of intersecting discs. The function should return −1 if the number of intersecting pairs exceeds 10,000,000.
Given array A shown above, the function should return 11, as explained above.
Write an efficient algorithm for the following assumptions:
N is an integer within the range [0..100,000];
each element of array A is an integer within the range [0..2,147,483,647].
I wrote this correct but not very efficient algorithm with time between O(n log n) and O(n ^ 2):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
int solution(std::vector<int>& A) {
size_t count{ 0 };
for (size_t i = 0; i < A.size(); ++i)
for (size_t j = i + 1; j < A.size(); ++j)
if (A[i] + A[j] >= j - i)
++count;
if (count > 10'000'000)
return -1;
return count;
}
int main()
{
std::vector A{ 1, 5, 2, 1, 4, 0};
std::cout << solution(A) << '\n'; // 11
return 0;
}
|
One hint is sorting (to get an O(n log) time), but that doesn't seemingly work well. See:
A: { 1, 5, 2, 1, 4, 0} return value:
11. Sorted array: { 5, 4, 2, 1, 1, 0}
B: { 1, 5, 2, 1, 0, 4} return value:
13. Sorted array: { 5, 4, 2, 1, 1, 0} (the same)
What I need, as usual, is
only a hint,
not code.