-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsolution.cpp
55 lines (41 loc) · 1.03 KB
/
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
46
47
48
49
50
51
52
53
54
55
#include <bits/stdc++.h>
using namespace std;
const int maxk = 20;
string solve(string s, int target, int k) {
int n = s.size();
vector<bool> found(k + 1, false);
vector<int> nums(n);
for (int i = 0; i < n; i++)
nums[i] = s[i] - 'a' + 1;
bitset<maxk> bs;
int upperbound = 1 << n;
for (int i = 1; i < upperbound; i++) {
bs = bitset<maxk>(i);
if (bs.count() > k)
continue;
if (found[bs.count()])
continue;
int sum = 0;
for (int j = 0; j < n; j++)
if (bs.test(j))
sum += nums[j];
if (sum == target) {
found[bs.count()] = true;
}
}
string res = "";
for (int i = 1; i <= k; i++)
res = res + to_string(found[i]) + " ";
return res;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int targetSum, kmax;
string st;
cin >> st;
cin >> targetSum >> kmax;
string res = solve(st, targetSum, kmax);
cout << res;
return 0;
}