# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
972845 | VinhLuu | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma GCC optimize("O3,unroll-loops")
//#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
#define int long long
#define ll long long
#define fi first
#define se second
#define pb push_back
#define all(lmao) lmao.begin(), lmao.end()
using namespace std;
typedef pair<int,int> pii;
typedef tuple<int,int,int> tp;
const int N = 1e6 + 5;
int block = 555;
const int mod = 1e9 + 7;
//const ll oo = 5e18;
int n, a[N];
vector<int> find_subset(int L,int R,vector<int> _w){
vector<int> w;
for(int i = 0; i < _w.size(); i ++) w.pb(i);
sort(all(w), [&] (int x,int y){return _w[x] < _w[y];});
for(int i = 0; i < w.size(); i ++){
a[i] = w[i];
w[i] = _w[i];
}
int ptr = 0;
vector<int> ans;
if(w[0] >= L && w[0] <= R){ans.pb(0); return ans;}
deque<int> dq;
int tmp = w[0];
dq.pb(0);
for(int i = 1; i < w.size(); i ++){
dq.push_front(i);
tmp += w[i];
while(!dq.empty() && tmp > R){
tmp -= w[dq.back()];
dq.pop_back();
}
if(tmp >= L){
while(!dq.empty()){
ans.pb(dq.back());
dq.pop_back();
}
sort(all(ans));
return ans;
}
}
return ans;
}
#define lpv
#ifdef lpv
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define task "v"
if(fopen(task ".inp","r")){
freopen(task ".inp","r",stdin);
freopen(task ".out","w",stdout);
}
int l, u; cin >> l >> u;
int x;
vector<int> input;
while (cin >> x) input.push_back(x);
for (auto i : find_subset(l, u, input))
cout << i << ' ';
}
#endif // lpv