# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
529334 | kevin | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(), x.end()
#define f first
#define s second
#define ca(v) for(auto i:v) cout<<i<<" ";
#define nl cout<<"\n"
const int MOD = 1e9 + 7;
vector<int> find_subset(int l, int r, vector<int> ar){
sort(all(ar));
int n = ar.size();
int sm = 0;
int p = 0;
vector<int> emp = {};
if(ar[0] > l) return emp;
for(int i=0; i<n; i++){
if(ar[i] + sm > r) break;
sm += ar[i];
p = i;
}
for(int i=0; i<=n; i++){
if(sm >= l && sm <= r){
vector<int> out = {};
for(int j=i; j<=p+i; j++){
out.push_back(j);
}
return out;
}
if(i + 1 + p >= n) break;
sm -= ar[i];
sm += ar[i+p+1];
}
return emp;
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
// if (fopen("input.in", "r")) freopen("input.in", "r", stdin);
vector<int> v = (find_subset(15, 17, {6, 8, 8, 7}));
ca(v);
}