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:
A[0] = 1 A[1] = 5 A[2] = 2 A[3] = 1 A[4] = 4 A[5] = 0There 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:
class Solution { public int solution(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].
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
for (int idx = 0; idx < A.length; idx++) {
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left point and right point.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
for (int idx = 0; idx < A.length; idx++) {
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right)
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Caclu
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Caculate
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Calculate
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Calculate
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Calculate intersects with left and right point.
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Calculate intersects with left and right point.
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
// If the number of intersecting pairs
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Calculate intersects with left and right point.
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
// If the number of intersecting pairs excceds 10,000,000.
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Calculate intersects with left and right point.
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
// If the number of intersecting pairs excceds 10,000,000.
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Calculate intersects with left and right point.
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
// If the number of intersecting pairs excceds 10,000,000.
if (result > 10000000) {
return -1;
}
return result;
}
}
// you can also use imports, for example:
// import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
import java.util.Arrays;
class Solution {
public int solution(int[] A) {
int result = 0;
long[] left = new long[A.length];
long[] right = new long[A.length];
// Save left and right point each array.
for (int idx = 0; idx < A.length; idx++) {
left[idx] = idx - (long) A[idx];
right[idx] = idx + (long) A[idx];
}
Arrays.sort(left);
Arrays.sort(right);
int num = 0;
// Calculate intersects with left and right point.
for (int idx = 0; idx < A.length; idx++) {
while (num < A.length && right[idx] >= left[num]) {
result += num;
result -= idx;
num++;
}
}
// If the number of intersecting pairs excceds 10,000,000.
if (result > 10000000) {
return -1;
}
return result;
}
}
The solution obtained perfect score.