Let, A1, A2, ... An be n arrays.
Assuming all the arrays are sorted, if not we can sort them individually.
S = [ A1[0], A2[0],...An[0] ]
minSpread = max{S} - min{S}
Iterate i = 1 to L (where L is length of shortest array)
Remove min{S} from S.
Insert Ak[i] in S. (where Ak is the kth array from which a value was removed in previous step.)
minSpread = min(minSpread, max{S} - min{S});
As we have to minimize the spread (max-min) only option we have is to squeeze the min 'up' by removing the current min.
Works out in O(N) + O(N*L*logN), where N is no. of arrays and L is lenght of shortest array.
This is a common problem while displaying search results. when we have to show the smallest possible window of the excerpt from the page which contains all the given search words.
Here, A1[] A2[]... An[] contains the indexes of the appearance of words say-W1, W2... Wn.
Edit:
Nemo: You're right. The proof is a bit involving. The link provided by you attempts a similar soution. All I can add is:
Considering the facts:
1. We have to maintain exactly one element from each array.
2. The arrays are all sorted in increasing order.
Help us in discarding many combinations right away thus, making it possible to do it in a better time as compared to generating all combinations.
for more details visit the link provided by 'Nemo'.
and, complexity can be brought down to O(N) + O(N*L*logN) by maintaining a minheap as suggested.
where, N is no. of arrays and L is Length of shortest array.
max - min = 15 - 13 = 2? – IVlad Oct 18 '12 at 21:43