Prime Arrangements - Math - Easy - LeetCode
💻 coding

Prime Arrangements - Math - Easy - LeetCode

1 min read 224 words
1 min read
ShareWhatsAppPost on X
  • 1The problem involves counting permutations of numbers from 1 to n with prime numbers positioned at prime indices.
  • 2The solution requires calculating factorials of prime counts and non-prime counts modulo 10^9 + 7.
  • 3The algorithm has a time complexity of O(n^2) and a space complexity of O(1).

AI-generated summary · May not capture all nuances

Key Insight
AskGif

"The problem involves counting permutations of numbers from 1 to n with prime numbers positioned at prime indices."

Prime Arrangements - Math - Easy - LeetCode

Return the number of permutations of 1 to n so that prime numbers are at prime indices (1-indexed.)

(Recall that an integer is prime if and only if it is greater than 1, and cannot be written as a product of two positive integers both smaller than it.)

Since the answer may be large, return the answer modulo 10^9 + 7.

Example 1:

Input: n = 5 Output: 12 Explanation: For example [1,2,5,4,3] is a valid permutation, but [5,2,3,4,1] is not because the prime number 5 is at index 1. Example 2:

Input: n = 100 Output: 682289015

Constraints:

1 <= n <= 100

public class Solution {
 public int NumPrimeArrangements(int n) { 
 int mod = (int)Math.Pow(10, 9) + 7;
 int count = 0;
 for (int i = 2; i <= n; i++){
 if (IsPrime(i)){
 count++; 
 } 
 } 

 long res = 1;
 for (int i = count; i > 0; i--)
 {
 res = (res * i) % mod;
 res %= mod;
 }

 for (int i = n - count; i > 0; i--)
 {
 res = (res * i) % mod;
 res %= mod;
 }

 return (int)res;
 }
 
 bool IsPrime(int num)
 {
 for (int i = 2; i <= num / 2; i++){
 if (num % i == 0){
 return false; 
 } 
 } 

 return true;
 }
}

Time Complexity: O(n^2)

Space Complexity: O(1)

Enjoyed this article?

Share it with someone who'd find it useful.

ShareWhatsAppPost on X

sumitc91

Published on 2 October 2020 · 1 min read · 224 words

Part of AskGif Blog · coding

You might also like

Prime Arrangements - Math - Easy - LeetCode | AskGif Blog