# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
900103 | mannshah1211 | Detecting Molecules (IOI16_molecules) | C++14 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
std::vector<std::pair<int, int>> indices;
for (int i = 0; i < w.size(); i++) {
indices.push_back(std::make_pair(w[i], i));
}
int n = indices.size();
std::vector<int> prefix_sums(n);
for (int i = 0; i < n; i++) {
if (i == 0) {
prefix_sums[i] = indices[i].first;
} else {
prefix_sums[i] = prefix_sums[i - 1] + indices[i].first;
}
}
std::function<int(int, int)> segment_sum = [&](int l, int r) {
if (l == 0) {
return prefix_sums[r];
} else {
return prefix_sums[r] - prefix_sums[l - 1];
}
};
std::sort(indices.begin(), indices.end());
for (int i = 0; i < n; i++) {
int low = i, high = n - 1, index = -1;
while (low <= high) {
int middle = (low + high) / 2;
if (segment_sum(i, middle) >= l) {
index = middle;
high = middle - 1;
} else {
low = middle + 1;
}
}
if (index != -1) {
assert(segment_sum(i, index) >= l);
}
if (index != -1 && segment_sum(i, index) <= u) {
std::vector<int> answer;
int sum = 0;
for (int j = i; j <= index; j++) {
answer.push_back(indices[j].second);
sum += indices[j].first;
}
assert(l <= sum && sum <= u);
return answer;
}
}
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... |