Friday, February 27, 2015

Missing Numbers II [Solution]

A solution to Missing Numbers II.

Stream of n numbers: 1,2,,n, in some random order, and with two missing and two others repeated.

Need to given an O(logn) space and O(n) time algorithm to find out the four numbers (repeated and missing).

Solution

As expected this uses Math.

Assume the numbers are a,b,x,y the missing being a,b and repeated being x,y.

Now in one pass we can compute the sum of kth powers of the numbers seen, and subtract from 1k+2k++nk to get

Sk=ak+bkxkyk


We do this for k=1,2,7 (thus O(logn) space, and O(n) time).

Now assume a,b,x,y are roots of P(z)=z4+pz3+qz2+rz+s

This gives us the set of equations:

S4+pS3+qS2+rS1=0

S5+pS4+qS3+rS2+sS1=0

S6+pS5+qS4+rS3+sS2=0

S7+pS6+qS5+rS4+sS3=0


Now the above set of equations is basically

P(a)+P(b)P(x)P(y)=0

aP(a)+bP(b)xP(x)yP(y)=0

a2P(a)+b2P(b)x2P(x)y2P(y)=0

a3P(a)+b3P(b)x3P(x)y3P(y)=0



Since the matrix

[1111abxya2b2x2y2a3b3x3y3]

 
is invertible (similar to a Vandermonde matrix) for distinct a,b,x,y, we have that P(a)=P(b)=P(x)=P(y)=0.

Thus we solve for p,q,r,s and find the roots of P(z), either by verifying which of 1,2,,n are roots, or by other means.


No comments:

Post a Comment