# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
717746 | Toxtaq | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
//#include "molecules.h"
/// https://codeforces.com/blog/entry/52464
/// https://oj.uz/submission/715687
using namespace std;
vector<int> find_subset(int l, int r, vector<int>w){
int n = w.size();
vector<pair<int, int>>sorted(n);
for(int i = 0;i < n;++i){
sorted[i] = {w[i], i};
}
sort(sorted.begin(), sorted.end());
vector<int>ans;
int left = 0, right = 0;
long long sum = 0;
while(left <= right && right < n){
sum += sorted[right].first;
while(sum > r){
sum -= sorted[left].first;
left++;
}
if(sum >= l && sum <= r){
for(int i = left;i <= right;++i){
ans.push_back(sorted[i].second);
}
return ans;
}
right++;
}
return ans;
}
int main()
{
int l, r, n;
cin >> l >> r >> n;
vector<int>v(n);
for(int i = 0;i < n;++i)cin >> v[i];
vector<int>ans = find_subset(l, r, v);
for(int i : ans)cout << i << " ";
}