#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
struct mol{
int loc, val;
bool operator<(const mol& rhs) const{
return val <= rhs.val;
}
};
vector<mol> v;
vector<int> s;
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
int i, n = w.size();
mol tmp;
for( i = 0; i < n; i++){
tmp.loc = i;
tmp.val = w[i];
v.push_back(tmp);
}
sort(v.begin(), v.end());
s.push_back(0);
for(i = 0; i < n; i++){
s.push_back(s[i] + v[i].val);
}
for( i = 1;i <=n ; i++){
if(s[i] > l){
break;
}
if(s[n] - s[ n - i] >= u){
break;
}
}
if(s[i] > l){
return std::vector<int>(0);
}
vector<int> ans;
int j;
for( j = 1; n - i -j >=0 ;j++){
if(s[n - j] - s[n - i -j] < u){
ans.push_back(v[n - j].loc);
u -= v[n-j].val;
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
248 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
2 ms |
356 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
3 ms |
356 KB |
Contestant can not find answer, jury can |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
392 KB |
sum of weights should be in [302..304] but it is 51 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
248 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
2 ms |
356 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
3 ms |
356 KB |
Contestant can not find answer, jury can |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
248 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
2 ms |
356 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
3 ms |
356 KB |
Contestant can not find answer, jury can |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
248 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
2 ms |
356 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
3 ms |
356 KB |
Contestant can not find answer, jury can |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
248 KB |
OK (n = 1, answer = NO) |
2 |
Correct |
2 ms |
356 KB |
OK (n = 1, answer = NO) |
3 |
Incorrect |
3 ms |
356 KB |
Contestant can not find answer, jury can |
4 |
Halted |
0 ms |
0 KB |
- |