forked from Sunchit/Coding-Decoded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeautifulArrangement.java
35 lines (30 loc) · 1.09 KB
/
BeautifulArrangement.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
class Solution {
private int count = 0; // store the answer
// TC : O(n!)
public int countArrangement(int n) {
if(n<=0) {
return count;
}
boolean[] visited = new boolean[n+1];// as the array starts from 1 to N
helper(visited, 1, n);
return count;
}
// used to generate all the permutations of the input array
private void helper(boolean[] visited, int valOrIndex, int n){
// break condition to stop the recursion
if(valOrIndex > n){
// Means with the current arrangement N elements are beautiful
count++;
return;
}
for(int i=1;i<=n;i++){
if(!visited[i] && (valOrIndex % i ==0 || i%valOrIndex ==0)){
// visited of index means that index satifies the beautiful array condition
// and has beenn consumed in the past
visited[i] = true; // index or val has been consumed
helper(visited, valOrIndex+1, n);
visited[i] = false; // undo the change
}
}
}
}