forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeautiful-arrangement_1_AC.cpp
50 lines (46 loc) · 1.12 KB
/
beautiful-arrangement_1_AC.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Brute-force DFS
// There can't be so many of those "beautiful arrangements".
// So just do it.
class Solution {
public:
int countArrangement(int N) {
this->N = N;
this->m.resize(N + 1, vector<bool>(N + 1, false));
int i, j;
for (i = 1; i <= N; ++i) {
for (j = 1; j <= N; ++j) {
if (i % j == 0 || j % i == 0) {
m[i][j] = true;
}
}
}
vector<int> v;
vector<bool> b(N + 1, false);
int res = 0;
dfs(v, b, res);
m.clear();
b.clear();
return res;
}
private:
int N;
vector<vector<bool>> m;
void dfs(vector<int> &v, vector<bool> &b, int &res) {
if (v.size() == N) {
++res;
return;
}
int i;
int j = v.size() + 1;
for (i = 1; i <= N; ++i) {
if (b[i] || !m[i][j]) {
continue;
}
v.push_back(i);
b[i] = true;
dfs(v, b, res);
b[i] = false;
v.pop_back();
}
}
};