Soldiers in a Line
Source: Alok Goyal's Puzzle Page
Problem:
In a line up of 10 soldiers, what is the least number of soldiers that can be picked in order of either ascending or descending heights? Assume that no two soldiers have the same height. Soldiers can be picked from anywhere in the line, but their order of standing cannot be changed.
Problem:
In a line up of 10 soldiers, what is the least number of soldiers that can be picked in order of either ascending or descending heights? Assume that no two soldiers have the same height. Soldiers can be picked from anywhere in the line, but their order of standing cannot be changed.
If one does not pick any soldiers then the answer is 0. In what way are we picking the soldiers ?
ReplyDeleteAssuming we picker can preprocess the heights before selecting, the least number of soldiers that can be picked in either descending or ascending order would be 2.
ReplyDeletethis scenarios would occur when you pick the first guy as the 5 highest person then try to oscillate between picking the descending and ascending options.
Something like this pattern would occur : /\/\/\/\/
4. This is essentially asking to prove the Erdos-Szekeres Theorem.
ReplyDeleteIn other words, we want to find the minimum number k such that, for any permutation of 10 elements, we can always either find an increasing subsequence of length k, or a decreasing subsequence of length k.
ReplyDeleteGiven a permutation, we can build a standard Young tableau using the Schensted correspondence:
https://en.wikipedia.org/wiki/Robinson%E2%80%93Schensted_correspondence
This tableau has the property that the length of longest increasing subsequence is the length of the first row (or equivalently, the number of columns), and the length of the longest descreasing subsequence is the height of the first column (or equivalently, the number of lines).
Since a tableau with 10 elements necessarily has either at least 4 lines or at least 4 columns, the number k we are looking for is 4.
More generally, for N soldiers, the numbers is ceil(sqrt(N)).
Is there an algorithm for constructing this permutation ?
DeleteFor any general N,answer is the sequence with ceil(sqrt(N)) decreasing subsequences:
ReplyDelete(ceil(sqrt(N)),1) , (2*ceil(sqrt(N)),ceil(sqrt(N))+1), ....(i*ceil(sqrt(N)),(i-1)*ceil(sqrt(N))+1) .... (N,(ceil(sqrt(N))-1)*ceil(sqrt(N))+1)
which will essentially give maximum ceil(sqrt(N)) sized increasing/decreasing subsequences.
For example,for N=15: 4 3 2 1 8 7 6 5 12 11 10 9 15 14 13