I need all possible permutations of a given string such that no character should remain at the same place as in the input string. Eg. : for input "ask" Output: all possible permutaions like "ksa", "kas"... such that 'a' is not in the 1st position , 's' is not in the 2nd positions and so on... in any permutation.
I only need the count of such possible permutations
I can do this by generating all permutations and filtering them but I need a very efficient way of doing this.
All characters in the string are "UNIQUE"
Preferred language C++.
aaba valid input? – Karoly Horvath Nov 3 '12 at 9:36nsymbols is asymptoticallyn!/e, so creating all and filtering is just a constant factor from optimal. – Daniel Fischer Nov 3 '12 at 9:45!n = n! \sum_{i=0}^n (-1)^i/i!, which can be done in O(n*n) (maybe even faster) if the interim results are saved. – Zeta Nov 3 '12 at 9:53