Counting Reorders
Calculate the number of ways you can reorder the characters of a string so that no two adjacent characters are the same. For example, the answer for aabc is 6, because the possible orders are abac, abca, acab, acba, baca, and caba. Input The only input line has a string that consists of n characters between a–z. Output Print an integer: the answer modulo 10^9+7. Constraints - 1 \le n \le 50
HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17
CodeSearch Tutor
Hints, not spoilers — it won’t hand over the full solution unless you insist.
Sign in to chat with the tutor and save your progress.
Sign in to start