# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
403282 | Leonardo_Paes | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector<int> find_subset(int ll, int u, vector<int> v){
vector<int> ans;
sort(v.begin(), v.end());
int l = 0, r = 0;
long long sum = v[0];
while(l < v.size()){
if(ll <= sum and sum <= u) break;
if(sum < ll){
if(r+1 < n) sum += v[++r];
else break;
}
else if(sum > ll) sum -= v[l++];
}
if(sum < ll or sum > u) return ans;
while(l <= r) ans.push_back(l++);
return ans;
}
int main(){
vector<int> v = {6, 8, 8, 7};
vector<int> ans = find_subset(15, 17, v);
for(int x : ans) cout << x << " ";
}