#include "molecules.h"
#include<bits/stdc++.h>
using namespace std;
const int N = 1e4 + 1;
bool dp[N][N];
int n;
vector<int> ans;
bool ok = 0;
void get(vector<int> arr, int i, int sum, vector<int> an){
if(ok)return;
if(i == 0 && sum != 0 && dp[n - 1][sum]){
an.push_back(i + 1);
ans = an;
ok = 1;
return;
}
if(i == 0 && sum == 0){
ans = an;
ok = 1;
return;
}
if(dp[i - 1][sum]){
get(arr, i - 1, sum, an);
}
if(sum >= arr[i] && dp[i - 1][sum - arr[i]]){
an.push_back(i + 1);
get(arr, i - 1, sum - arr[i], an);
}
}
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
n = w.size();
for(int j = 0; j < n; j++){
dp[0][w[j]] = 1;
}
for(int i = 1; i < n; i++){
for(int j = 0; j <= 1e4 + 1; j++){
if(j == 0){dp[i][j] = 1; continue;}
if(j >= w[i]){
dp[i][j] = dp[i - 1][j - w[i]] || dp[i - 1][j];
}
else{
dp[i][j] = dp[i - 1][j];
}
}
}
for(int i = l; i <= u; i++){
if(dp[n - 1][i]){
get(w, n, i, ans);
break;
}
}
sort(ans.begin(), ans.end());
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
1 ms |
384 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
1 ms |
384 KB |
Integer 1 violates the range [0, 0] |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
384 KB |
sum of weights should be in [302..304] but it is 301 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
1 ms |
384 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
1 ms |
384 KB |
Integer 1 violates the range [0, 0] |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
1 ms |
384 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
1 ms |
384 KB |
Integer 1 violates the range [0, 0] |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
1 ms |
384 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
1 ms |
384 KB |
Integer 1 violates the range [0, 0] |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
256 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
1 ms |
384 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
1 ms |
384 KB |
Integer 1 violates the range [0, 0] |
4 |
Halted |
0 ms |
0 KB |
- |