On the input I have a "n" number, which is the size of permutation, and I have to print all possible permutations containing n numbers (from 1 do n), but I must reject ones with "231 scheme"
"231 scheme" means that in permutation we can find such three consecutive numbers (x, y, z) which will apply to inequality z (1<2<3).
So, for example for n=4 we have 4! = 24 permutations. We reject nine of them...
- 4231, 2431, 2341, 2314 - because they have 231
- 2413, 3241 - because they have 241
- 3412, 3421 - because they have 341 (and 342)
- 1342 - because it has 342
...and print the other fifteen posibilities.
Ok, so that's the problem. I've already spent a lot of time thinking about this task. And I've figured out something like this:
We could generate permutations for n=3, reject 231 and then (for n=4) generate all possibilities based on ones previously generated.
So I'll pick a 132 permutation. Now we "insert" 4 on all possible ways: 4132, 1432, 1342, 1324. We can tell for sure, that the first and last permutations are fine, so we have to look closer to the other two. And my idea is to find the highest number from numbers standing on the left side of the "4", and a minimum from ones standing on the right side of "4". And if left_max>right_min, we have our "231 scheme".
For example permutation 1342: left_max=3, right_min=2, so it's correct "231" and we reject that from final answer.
I'd be very thankful for any comments, ideas and tips. I realize that my idea may be useless, but that's the best I have. So is there any other (possibly smarter and/or with better complexity) way?