-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1182.cpp
More file actions
52 lines (43 loc) · 708 Bytes
/
1182.cpp
File metadata and controls
52 lines (43 loc) · 708 Bytes
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
#include <iostream>
using namespace std;
int n, s;
int cnt = 0;
int arr[25];
bool check[25];
void backtr(int start, int size, int msize) {
if (size == msize) {
int sum = 0;
for (int i = 0; i < n; i++) {
if (check[i]) {
sum += arr[i];
}
}
if (sum == s) {
cnt++;
}
}
else {
for (int i = start; i < n; i++) {
if (check[i] == false) {
check[i] = true;
backtr(i + 1, size + 1, msize);
check[i] = false;
}
}
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> s;
for (int i = 0; i < n; i++) {
cin >> arr[i];
check[i] = false;
}
for (int i = 1; i <= n; i++) {
backtr(0, 0, i);
}
cout << cnt;
return 0;
}