-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcombination.cpp
68 lines (61 loc) · 1.41 KB
/
combination.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#pragma GCC optimize("Ofast")
#include <algorithm>
#include <bitset>
#include <deque>
#include <iostream>
#include <iterator>
#include <string>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <vector>
#include <unordered_map>
#include <unordered_set>
using namespace std;
void abhisheknaiidu()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
// Optimized Solution
void solve(int n, vector<vector<int>> &res, vector<int> sub, int start) {
if(sub.size() == 5)
res.push_back(sub);
if(!sub.empty() && sub.size() + (n-sub.back()) < 5) {
cout << "op : ";
cout << sub.size() << " " << n << " " << sub.back() << " " << 5 << endl;
return;
}
for(int i=start; i<=n; i++) {
sub.push_back(i);
// for(auto x:sub) {
// cout << x << " ";
// }
// cout << endl;
solve(n, res, sub, i+1);
sub.pop_back();
}
}
// More Optimised can be done by:
// if (!empty(sub) && sub.size() + (n - sub.back()) < k) {
// return;
// }
// Or First Making a Vector of Nums and then proceeding the same, but it takes double time!
int main(int argc, char* argv[]) {
abhisheknaiidu();
int n = 5;
vector< vector<int>> res;
vector <int> sub;
solve(n, res, sub, 1);
for(auto x: res) {
for(auto y: x) {
cout << y << " ";
}
cout << endl;
}
return 0;
}