# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
773362 | Matblube | Detecting Molecules (IOI16_molecules) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
int find_subset(int l, int u, int w[], int n, int result[]){
sort(w, w+n);
int a, b, cc=0, pos=0;
a=b=0;
while(1){
if(b>=n || a>=n) break;
if(cc<l){
cc+=w[a++]; continue;
}
else if(cc>u){
cc-=w[b++]; continue;
}
for(int i=a ; i<b ; i++){
result[pos++]=w[i];
}
return a-b;
}
return 0;
}