# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
718629 | n1k | Detecting Molecules (IOI16_molecules) | C++17 | 1 ms | 304 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.
#include "molecules.h"
#include <bits/stdc++.h>
#define all(a) (a).begin(), (a).end()
#define sz(a) (a).size()
#define ll long long
using namespace std;
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
sort(all(w));
ll ps = 0, ss = 0;
for(int i = 0; i < sz(w); i++){
ps += w[i];
ss += w[sz(w) - i - 1];
if(ps <= u && ss >= l){
if(l <= ps){
vector<int> ans(i + 1);
iota(all(ans), 0);
return ans;
}
// found
int b1 = i, b2 = sz(w) - i - 1;
vector<int> ans;
if(b1 > b2){
swap(b1, b2);
for(int k = b1; k <= b2; k++){
ans.push_back(k);
}
}
for(int j = 0; j < b1; j++){
ps -= w[j];
ps += w[sz(w) - j - 1];
if(l <= ps && ps <= u){
for(int k = j + 1; k < b1; k++){
ans.push_back(k);
}
for(int k = sz(w) - j - 1; k < sz(w); k++){
ans.push_back(k);
}
return ans;
}
}
}
}
return std::vector<int>(0);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |