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