# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
718629 | n1k | Detecting Molecules (IOI16_molecules) | C++17 | 1 ms | 304 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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);
}
컴파일 시 표준 에러 (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... |