-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathSolution.cpp
45 lines (35 loc) · 1021 Bytes
/
Solution.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
#include <bits/stdc++.h>
using namespace std;
void generate(int n, int opening, int closing, string combination, vector<string>& result) {
int size = combination.size();
if(size == n && closing == opening) {
result.push_back(combination);
return;
}
if((closing < opening) && (size > 0)) {
combination.push_back(')');
generate(n, opening, closing+1, combination, result);
combination.pop_back();
}
if(size < n-1) {
combination.push_back('(');
generate(n, opening+1, closing, combination, result);
combination.pop_back();
}
}
vector<string> generateParenthesis(int n) {
vector<string> result;
string combination;
generate(2*n, 0, 0, combination, result);
return result;
}
int main() {
int n;
vector<string> result;
scanf("%d", &n);
result = generateParenthesis(n);
for(int i=0; i<result.size(); i++) {
printf("%s\n", result[i].c_str());
}
return 0;
}