# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
218477 | Sho10 | Detecting Molecules (IOI16_molecules) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
ID: Sho10
LANG: C++
*/
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho10
#define ll long long int
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#define all(a) (a).begin(), (a).end()
#define sz size
#define f first
#define s second
#define pb push_back
#define er erase
#define in insert
#define mp make_pair
#define pi pair
#define rc(s) return cout<<s,0
#define endl '\n'
#define mod 1000000007
#define PI 3.14159265359
#define CODE_START ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
ll sum=0;
vector<pair<ll,ll> >v;
vector<int>ans;
vector<int> find_subset(int l,int u,vector<int>w){
for(ll i=0;i<w.size();i++)
{
v.pb(mp(w[i],i));
}
sort(v.begin(),v.end());
ll sum=0;
ll lx=0,rr=0;
while(lx<v.size()&&sum+v[lx].f<=u){
sum=sum+v[lx].f;
lx++;
}
lx--;
rr=-1;
while(lx<v.size()){
if(sum>=l&&sum<=u){
for(ll i=rr+1;i<=lx;i++)
ans.pb(v[i].s);
return ans;
}
lx++;
sum=sum+v[lx].f;
r++;
sum=sum-v[r].f;
}
return ans;
}