I know this can be done by sorting the array and taking the larger numbers until the required condition is met. That would take at least nlog(n) sorting time.
Is there any improvement over nlog(n).
We can assume all numbers are positive.
|
I know this can be done by sorting the array and taking the larger numbers until the required condition is met. That would take at least nlog(n) sorting time. Is there any improvement over We can assume all numbers are positive. |
||||
| show 3 more comments |
|
Here is an algorithm that is Read http://en.wikipedia.org/wiki/Heap_%28data_structure%29 if my description of the algorithm is unclear (it is light on details, but the details are all there).
This is almost certainly the answer they were hoping for, though not getting it shouldn't be a deal breaker. Edit: Here is another variant that is often faster, but can be slower.
If we get to reject most of the array without manipulating our heap, this can be up to twice as fast as the previous solution. But it is also possible to be slower, such as when the last element in the array happens to be bigger than S. |
|||||||||||||
|
|
Assuming the numbers are integers, you can improve upon the usual Because the range of values is finite, you can use a non-comparative sorting algorithm such as Pigeonhole Sort or Radix Sort to go below Note that these methods are dependent on some function of S, so if S gets large enough (and n stays small enough) you may be better off reverting to a comparative sort. |
|||||||||||||
|
|
One improvement (asymptotically) over Theta(nlogn) you can do is to get an O(n log K) time algorithm, where K is the required minimum number of elements. Thus if K is constant, or say log n, this is better (asymptotically) than sorting. Of course if K is n^epsilon, then this is not better than Theta(n logn). The way to do this is to use selection algorithms, which can tell you the ith largest element in O(n) time. Now do a binary search for K, starting with i=1 (the largest) and doubling i etc at each turn. You find the ith largest, and find the sum of the i largest elements and check if it is greater than S or not. This way, you would run O(log K) runs of the selection algorithm (which is O(n)) for a total running time of O(n log K). |
|||||
|
|
Here is an O(n) expected time solution to the problem. It's somewhat like Moron's idea but we don't throw out the work that our selection algorithm did in each step, and we start trying from an item potentially in the middle rather than using the repeated doubling approach. Alternatively, It's really just quickselect with a little additional book keeping for the remaining sum. First, it's clear that if you had the elements in sorted order, you could just pick the largest items first until you exceed the desired sum. Our solution is going to be like that, except we'll try as hard as we can to not to discover ordering information, because sorting is slow. You want to be able to determine if a given value is the cut off. If we include that value and everything greater than it, we meet or exceed S, but when we remove it, then we are below S, then we are golden. Here is the psuedo code, I didn't test it for edge cases, but this gets the idea across.
|
|||||||||||
|
Sum elements highest to lowest in the sorted order till you exceed S. |
|||
|
|
n lg(n)limit on comparison sorts is that you don't know in advance what range the values lie in, how many there are, etc. Knowing some of that information up front is what allows the non-comparative sorts to perform better in some instances. – verdesmarald May 11 '11 at 13:47