-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1718_leetcode.cpp
35 lines (32 loc) · 1.03 KB
/
1718_leetcode.cpp
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:
bool findLargestArray(vector<int>& res,vector<bool>& used,int pos,int n){
if(pos==2*n-1) return true;
if(res[pos]!=0) //Already filled
return findLargestArray(res,used,pos+1,n);
//Try assigning all unused values
for(int i=n;i>=1;--i){//Tryb forming largest number
if(used[i]==true) continue;
used[i]=true;
res[pos]=i;
if(i==1 and findLargestArray(res,used,pos+1,n))
return true;
if(i>1 and (pos+i)<(2*n-1) and res[pos+i]==0){
res[pos+i]=i;
if(findLargestArray(res,used,pos+1,n))
return true;
res[pos+i]=0;
}
used[i]=false;
res[pos]=0;
}
return false;
}
public:
vector<int> constructDistancedSequence(int n) {
vector<int> res(2*n-1,0);
vector<bool> used(n+1,false);
findLargestArray(res,used,0,n);
return res;
}
};