Problem Description
Return the number of permutations of 1 to n so that prime numbers are at prime indices (1-indexed). Since the answer may be large, return the answer modulo 10^9 + 7.
Key Insights
- Identify prime numbers up to n using the Sieve of Eratosthenes.
- Determine the count of prime numbers and non-prime numbers in the range from 1 to n.
- Calculate the number of valid permutations by:
- Finding permutations of prime numbers at prime indices.
- Finding permutations of non-prime numbers at non-prime indices.
- Use factorial calculations to determine the number of arrangements.
Space and Time Complexity
Time Complexity: O(n log log n) for the Sieve of Eratosthenes and O(n) for factorial calculations, resulting in an overall complexity of O(n log log n). Space Complexity: O(n) for storing prime flags.
Solution
To solve the problem, we can break it down into the following steps:
- Use the Sieve of Eratosthenes to find all prime numbers up to n.
- Count the total number of prime indices and the total number of prime numbers.
- Calculate the factorial of the count of prime numbers and the count of non-prime numbers.
- Multiply these two results together and take the modulo 10^9 + 7 to get the final answer.