# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
707566 | Error42 | Detecting Molecules (IOI16_molecules) | C++17 | 1 ms | 288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <algorithm>
#include <numeric>
#include <vector>
using namespace std;
using ll = long long;
vector<int> find_subset(
int const l,
int const u,
vector<int> _w
) {
sort(_w.begin(), _w.end());
vector<ll> const w(_w.begin(), _w.end());
vector<ll> prefix(w.size() + 1);
partial_sum(w.begin(), w.end(), prefix.begin() + 1);
for (int mol_count = 1; mol_count <= w.size(); mol_count++) {
int lo = 0;
int hi = mol_count;
while (lo <= hi) {
int const mi = (lo + hi) / 2;
int const top = mi;
int const bottom = mol_count - mi;
ll val = prefix[bottom] + prefix[w.size()] - prefix[w.size() - top];
if (l <= val && val <= u) {
vector<int> solution;
for (int i = 0; i < bottom; i++)
solution.push_back(i);
for (int i = w.size() - top; i < w.size(); i++)
solution.push_back(i);
return solution;
}
if (val < l)
lo = mi + 1;
else
hi = mi - 1;
}
}
return {};
}
컴파일 시 표준 에러 (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... |