Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find only two numbers in array that evenly divide each other

Tags:

algorithm

Find the only two numbers in an array where one evenly divides the other - that is, where the result of the division operation is a whole number

Input Arrays  Output
5 9 2 8       8/2 = 4
9 4 7 3       9/3 = 3
3 8 6 5       6/3 = 2

The brute force approach of having nested loops has time complexity of O(n^2). Is there any better way with less time complexity?

This question is part of advent of code.

like image 643
mc20 Avatar asked Jan 31 '18 13:01

mc20


People also ask

How do you divide numbers evenly?

For example, 16 can be divided evenly by 1, 2, 4, 8, and 16. So the numbers 1, 2, 4, 8, and 16 are called factors of 16. To find the factors of a number, begin with 1 and the number itself, then divide the number by 2, 3, 4, etc., taking only pairs of factors that divide the number evenly.

How do you check if a number divides all elements of an array?

The approach is to calculate GCD of the entire array and then check if there exist an element equal to the GCD of the array. For calculating the gcd of the entire array we will use Euclidean algorithm.

How do you divide numbers in an array?

Examples : Input : a[] = {5, 100, 8}, b[] = {2, 3} Output : 0 16 1 Explanation : Size of a[] is 3. Size of b[] is 2. Now 5 has to be divided by the elements of array b[] i.e. 5 is divided by 2, then the quotient obtained is divided by 3 and the floor value of this is calculated.

How do you divide an array in Java?

Using the copyOfRange() method you can copy an array within a range. This method accepts three parameters, an array that you want to copy, start and end indexes of the range. You split an array using this method by copying the array ranging from 0 to length/2 to one array and length/2 to length to other.


1 Answers

Given an array of numbers A, you can identify the denominator by multiplying all the numbers together to give E, then testing each ith element by dividing E by Ai2. If this is a whole number, you have found the denominator, as no other factors can be introduced by multiplication.

Once you have the denominator, it's a simple task to do a second, independent loop searching for the paired numerator.

This eliminates the n2 comparisons.

Why does this work? First, we have an n-2 collection of non-divisors: abcde.. To complete the array, we also have numerator x and denominator y.

However, we know that x and only x has a factor of y, so it can be expressed as yz (z being a whole remainder from the division of x by y)

When we multiply out all the numbers, we end up with xyabcde.., but as x = yz, we can also say y2zabcde..

When we loop through dividing by the squared i'th element from the array, for most of the elements we create a fraction, e.g. for a:

y2zabcde.. / a2 = y2zbcde.. / a

However, for y and y only:

y2zabcde.. / y^2 = zabcde..

Why doesn't this work? The same is true of the other numbers. There's no guarantee that a and b can't produce another common factor when multiplied. Take the example of [9, 8, 6, 4], 9 and 8 multiplied equals 72, but as they both include prime factors 2 and 3, 72 has a factor of 6, also in the array. When we multiply it all out to 1728, those combine with the original 6 so that it can divide soundly by 36.

How might this be fixed? More accurately, if y is a factor of x, then y's prime factors will uniquely be a subset of x's prime factors, so maybe things can be refined along those lines. Obtaining a prime factorization should not scale according to the size of the array, but comparing subsets would, so it's not clear to me if this is at all useful.

like image 200
Danikov Avatar answered Oct 09 '22 17:10

Danikov