# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
785074 | Lyrically | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define pb push_back
#define rep(i,n) for(int i=0;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
int read(){int x;scanf("%d",&x);return x;}
void print(int x){printf("%d\n",x);}
void file(string s)
{
freopen((s+".in").c_str(),"r",stdin);
freopen((s+".out").c_str(),"w",stdout);
}
const int mod=998244353;
vector<int> find_subset(int l,int r,vector<int> w)
{
vector<pii> v;
rep(i,(int)w.size())
{
v.pb({w[i],i});
}
sort(v.begin(),v.end());
long long tot=0;
int n=(int)w.size();
vector<int> res;
rep(i,n)
{
tot=0;
for(int j=i;j<n;j++)
{
tot+=v[j].first;
if(tot>=l&&tot<=r)
{
for(int k=i;k<=j;k++)
{
res.pb(v[k].second);
}
sort(res.begin(),res.end());
return res;
}
}
}
return res;
}
signed main()
{
int n=read(),L=read(),R=read();
vector<int> w(n);
rep(i,n){w[i]=read();}
vector<int> cur=find_subset(L,R,w);
cout<<cur.size()<<endl;
rep(i,cur.size())
{
cout<<cur[i]<<" ";
}
return 0;
}