# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
232612 | UserIsUndefined | Detecting Molecules (IOI16_molecules) | C++14 | 6 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
//#include "molecules.h"
using namespace std;
long long presum[200005];
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
int n = w.size();
vector<pair<int,int>> v;
for (int i = 0 ; i < n ; i++){
v.push_back({w[i], i});
}
sort(v.begin(), v.end());
for (int i = 0 ; i < n ; i++){
if (i == 0)presum[i] = v[i].first;
else presum[i] = presum[i-1] + v[i].first;
}
vector<int> ans;
for (int i = 1 ; i <= n ; i++){
if (presum[i-1] > u)return ans;
if (presum[n-1] - presum[n-1-i] < l)continue;
long long sum = 0;
for (int j = 0 ; j < i ; j++){
sum+= v[j].first;
}
int x = 0;
int y = i;
while(y < n){
if ((sum >= l)&&(sum <= u))break;
else if (sum < l){
sum+= v[y].first;
y++;
}
else if (sum > u){
sum-= v[x].first;
x++;
}
}
for (int j = x ; j < y ; j++){
ans.push_back(v[j].second);
}
return ans;
}
}
컴파일 시 표준 에러 (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... |