forked from illuz/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAC_dfs_less2^n.cpp
52 lines (46 loc) · 1 KB
/
AC_dfs_less2^n.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
51
/*
* Author: illuz <iilluzen[at]gmail.com>
* File: AC_dfs_less2^n.cpp
* Create Date: 2014-12-25 10:35:11
* Descripton: dfs
*/
#include <bits/stdc++.h>
using namespace std;
const int N = 0;
class Solution {
private:
string tmp;
void dfs(vector<string> &v, int pos, int n, int used) {
if (pos == n * 2) {
cout << tmp << endl;
v.push_back(tmp);
return;
}
if (used < n) {
tmp.push_back('(');
dfs(v, pos + 1, n, used + 1);
tmp.pop_back();
}
if (used * 2 > pos) {
tmp.push_back(')');
dfs(v, pos + 1, n, used);
tmp.pop_back();
}
}
public:
vector<string> generateParenthesis(int n) {
vector<string> res;
if (n == 0)
return res;
tmp = "";
dfs(res, 0, n, 0);
return res;
}
};
int main() {
Solution s;
int n;
while (cin >> n)
s.generateParenthesis(n);
return 0;
}