# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
654817 | sandry24 | Detecting Molecules (IOI16_molecules) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pi;
#define pb push_back
#define mp make_pair
#define f first
#define s second
vi find_subset(int l, int u, vi w){
vector<pi> a;
for(int i = 0; i < w.size(); i++)
a.pb(mp(w[i], i+1));
sort(a.begin(), a.end());
int sum = 0, left = 0, right = 0;
for(int i = 0; i < w.size(); i++){
if(sum + a[i].f <= u){
sum += a[i].f;
right = i;
}
else break;
}
while(sum < l && right != w.size()-1){
sum -= a[left].f;
sum += a[right+1].f;
right++; left++;
if(sum > u)
return {};
}
if(sum < l)
return {};
vi ans;
for(int i = left; i <= right; i++)
ans.pb(a[i].s);
return ans;
}
void solve(){
vi w = {15, 17, 16, 18};
vi ans = find_subset(10, 20, w);
for(auto i : ans)
cout << i << ' ';
}
int main(){
ios::sync_with_stdio(0); cin.tie(0);
int t = 1;
//cin >> t;
while(t--){
solve();
}
}