# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
244136 | dCoding | Detecting Molecules (IOI16_molecules) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "molecules.h"
#define F0R(i,n) for(auto i = 0; i < (n); i++)
#define FOR(i,a,b) for(auto i = (a); i <= (b); i++)
#define ROF(i,a,b) for(auto i = (a); i >= (b); i--)
#define pb push_back
#define vi vector<int>
#define pii pair<int,int>
#define F first
#define S second
#define ll long long
using namespace std;
vi find_subset(int l,int u,vi w) {
vector<pii> a;
int n = w.size();
F0R(i,n) {
a.pb(make_pair(w[i],i));
}
sort(a.begin(),a.end());
ll pre[n];
pre[0] = a[0].F;
FOR(i,1,n-1) pre[i] = pre[i-1]+a[i].F;
vi ans;
int lo = 0, hi = n-1;
bool found = false;
int highestIndex = 0;
ll sum = 0;
F0R(i,n) {
highestIndex = i
sum += a[i].F;
if(sum >= u) {
break;
}
}
int lowestIndex = 0;
F0R(i,n) {
if(sum >= l && sum <= u) {
found = true;
lowestIndex = i;
break;
}
sum -= a[i].F;
}
if(!found || lowestIndex > highestIndex) return ans;
FOR(i,lowestIndex,highestIndex) ans.pb(a[i].S+1);
return ans;
}