This is an interview question. I have K machines each of which is connected to 1 central machine. Each of the K machines have an array of 4 byte numbers in file. You can use any data structure to load those numbers into memory on those machines and they fit. Numbers are not unique across K machines. Find the K largest numbers in the union of the numbers across all K machines. What is the fastest I can do this?
Update: to make it clear, the combine step is not a sort. You just pick the top k numbers from the results. There are many ways to do this efficiently. You can use a heap for example, pushing the head of each list. Then you can remove the head from the heap and push the head from the list the element belonged to. Doing this k times gives you the result. All this is O(k*log(k)). |
|||||
|
|
(This is an interesting problem because it involves parallelism. As I haven't encountered parallel algorithm optimization before, it's quite amusing: you can get away with some ridiculously high-complexity steps, because you can make up for it later. Anyway, onto the answer...) > "What is the fastest I can do this?" The best you can do is O(K). Below I illustrate both a simple O(K log(K)) algorithm, and the more complex O(K) algorithm. First step: Each computer needs enough time to read every element. This means that unless the elements are already in memory, one of the two bounds on the time is O(largest array size). If for example your largest array size varies as O(K log(K)) or O(K^2) or something, no amount of algorithmic trickery will let you go faster than that. Thus the actual best running time is Let us say the arrays have a max length of N, which is <=K. With the above caveat, we're allowed to bound Bounds and reasonable expectations: Let's begin by thinking of some worst-case scenarios, and estimates for the minimum amount of work necessary.
Can this bound of O(N) be achieved? Let's see... Simple approach - O(NlogN + K) = O(KlogK): For now let's come up with a simple approach, which achieves O(NlogN + K). Consider the data arranged like so, where each column is a computer, and each row is a number in the array:
You can also imagine this as a sweep-line algorithm from computation geometry, or an efficient variant of the 'merge' step from mergesort. The elements with parentheses represent the elements with which we'll initialize our potential "candidate solution" (in some central server). The algorithm will converge on the correct Algorithm:
(sidenote: Adding a callback hook to falling out of a priority queue is an O(1) operation.) We can see graphically that this will perform at most 2K*(findNextHighest_time + queueInsert_time) operations, and as we do so, elements will naturally fall out of the priority queue. findNextHighest_time is O(1) since we sorted the arrays, so to minimize 2K*queueInsert_time, we choose a priority queue with an O(1) insertion time (e.g. a Fibonacci-heap based priority queue). This gives us an O(log(queue_size)) extraction time (we cannot have O(1) insertion and extraction); however, we never need to use the extract operation! Once we are done, we merely dump the priority queue as an unordered set, which takes O(queue_size)=O(K) time. We'd thus have O(N log(N) + K) total running time (parallel sorting, followed by O(K)*O(1) priority queue insertions). In the worst case of N=K, this is O(K log(K)). The better approach - O(N+K) = O(K): However I have come up with a better approach, which achieves O(K). It is based on the median-of-median selection algorithm, but parallelized. It goes like this: We can eliminate a set of numbers if we know for sure that there are at least K (not strictly) larger numbers somewhere among all the computers. Algorithm:
It turns out that the reductions are O(N) total (amazingly not order K), except perhaps the final step which might by O(K). Thus this algorithm is O(N+K) = O(K) total. Analysis and simulation of O(K) running time below. The statistics allow us to divide the world into four unordered sets, represented here as a rectangle divided into four subboxes:
(I'd draw the relation between the unordered sets of rows and s-column here, but it would clutter things up; see the addendum right now quickly.) For this analysis, we will consider N as it decreases. At a given step, we are able to eliminate the elements labelled Now, the computers with the uneliminated elements redistribute their data ( Thus at each step of size
The decimation of the subproblem size is much faster than the normal geometric series (being √N rather than something like N/2 which you'd normally get from common divide-and-conquers). Unfortunately neither the Master Theorem nor the powerful Akra-Bazzi theorem work, but we can at least convince ourselves it is linear via a simulation:
The function ... Addendum
.
|
|||||||||
|
|
||||
|
|
|
I would suggest something like this:
|
|||||||||||
|
|
||||
|
|
|
I would think the MapReduce paradigm would be well suited to a task like this. Every machine runs it's own independent map task to find the maximum value in its array (depends on the language used) and this will probably be O(N) complexity for N numbers on each machine. The reduce task compares the result from the individual machines' outputs to give you the largest k numbers. |
|||||||||||||||
|
, which hilariously simplifies to 