# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
303006 | 2020-09-19T17:58:06 Z | noob_c0de | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KB |
#include<bits/stdc++.h> using namespace std; #define ar array const int mxn=2e5+3; int n,l,u; ar<int,2> a[mxn]; vector<int> find_subset(int l,int u,int w[]) { cin>>n>>l>>u; for (int i=0;i<n;i++) { cin>>w[i]; a[i][0]=w[i]; a[i][1]=i; } sort(a,a+n); vector<int> ans; int lf=0; int sum=0; for (int r=0;r<n;r++) { sum+=a[r][0]; if (sum>u) { sum-=a[lf][0]; lf++; } if (sum>=l) { for (int i=lf;i<=r;i++) ans.push_back(a[i][1]); return ans; } } return ans; }