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+bk−xk−yk
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
[11−1−1ab−x−ya2b2−x2−y2a3b3−x3−y3]
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.
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+bk−xk−yk
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
[11−1−1ab−x−ya2b2−x2−y2a3b3−x3−y3]
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