#include <iostream>
#include "molecules.h"
#include <vector>
using namespace std;
std::vector<int> find_subset(int l, int u, std::vector<int> w){
long long n=w.size();
long long tot=1<<n;
vector<int> res;
for(int i=0;i<tot;i++){
long long sum=0;
res.clear();
for(int j=0;j<n;j++){
if(i&(1<<j)){
sum+=w[j];
res.push_back(j);
}
}
if(sum>=l and sum<=u){ break; }
}
return res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
256 KB |
sum of weights should be in [10..12] but it is 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
256 KB |
OK (n = 12, answer = YES) |
2 |
Correct |
5 ms |
256 KB |
OK (n = 12, answer = YES) |
3 |
Incorrect |
5 ms |
256 KB |
sum of weights should be in [307..317] but it is 606 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
256 KB |
sum of weights should be in [10..12] but it is 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
256 KB |
sum of weights should be in [10..12] but it is 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
256 KB |
sum of weights should be in [10..12] but it is 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
256 KB |
sum of weights should be in [10..12] but it is 9 |
2 |
Halted |
0 ms |
0 KB |
- |