# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
227603 | AASG | Detecting Molecules (IOI16_molecules) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "molecules.h"
using namespace std;
vector<int> find_subset(int l, int u, vector<int> w) {
int n=w.size();
vector<pair<long long,int> >r;
vector<int> rr;
for(int i=0;i<n;i++){
r.push_back(make_pair(w[i],i));
}
sort(r.begin(),r.end());
long long rt=0;
int p1=0,p2=0;bool x=false;
while(rt<=u && rr.size()<=n){
if(rt+r[p2].first<u){
rr.push_back(r[p2].second());
rt=rt+r[p2].first;
p2++;
}
else {
rr.pop_front();
rt=rt-r[p1].first;
p1++;
}
if(rt>=l && rt<=u){x=true;
break;
}
}
sort(rr.begin(),rr.end());
if(!x)rr.clear();
return rr;
}