Arrange the integers 1-100 in such a way that no eleven of the numbers selected from left to right (adjacent or otherwise) form a strictly increasing or decreasing sequence. (This means if 11 numbers are selected from anywhere in the pattern they cannot be in an increasing or decreasing pattern).
I think I have to divide the 100 integers into 10 groups, all with 10 integers. But that's all I've thought about.
To reiterate my comment from above and remove this from the unanswered queue:
Think about the smaller question of arranging the numbers $1$-$9$ in such a way that there is no monotonic subsequence of length $4$ or more.
$789~456~123$ satisfies this condition. If you were to create an increasing subsequence all of the numbers must be from the same block. If you were to create a decreasing subsequence all of the numbers must be from different blocks. As such, the largest length increasing subsequence is the size of a block and the largest length decreasing subsequence is the number of blocks, both of which in this case are three.
Generalize this to your specific problem.