# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
875744 | raul2008487 | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "molecules.h"
#define ll int
#define all(v) v.begin(), v.end()
#define pb push_back
#define vl vector<ll>
using namespace std;
bool check(ll cur, ll low, ll high){
return (cur <= high && cur >= low);
}
vector<int> find_subset(int l, int u, vector<int> w) {
vl ans;
ll i, j, n = w.size(), l = 0, r = 1, sum = w[0];
sort(all(w));
bool as = 0;
while(r <= n){
if(check(sum, l, u)){
for(i=l+1;i<=r;i++){
ans.pb(i);
as = 1;
break;
}
}
else if(sum > u){
l++;
sum -= w[l-1];
}
else{
r++;
sum += w[r-1];
}
}
return ans;
}