# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1000365 | Gray | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <cassert>
#include <cmath>
#include <iomanip>
#include <iostream>
#include <stack>
#include <vector>
#define ll long long
#define ld double
#define ff first
#define ss second
#define ln "\n"
using namespace std;
const ll MOD = (ll)1e9+7;
const ll INF = 2e18;
vector<int> find_subset(int d, int u, vector<int> &w){
ll n = w.size();
vector<pair<ll, ll>> iw(n);
for (ll i=0; i<n; i++) iw[i] = {w[i], i};
sort(iw.begin(), iw.end());
ll l=0, r=0;
ll sum=iw[0].ff;
while (r<n){
if (sum<=u){
if (sum>=d){
vector<int> ans;
ll rsum=0;
for (ll i=l; i<=r; i++){
rsum+=iw[i].ff;
ans.push_back(iw[i].ss);
}
assert(rsum<=u and rsum>=d);
return ans;
}else{
r++;
sum+=iw[r].ff;
}
}else{
sum-=iw[l].ff;
l++;
}
}
return {};
}