# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
946742 | PenguinsAreCute | DNA 돌연변이 (IOI21_dna) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
vector<int> find_subset(int l, int u, vector<int> w) {
int n = w.size();
vector<pair<int,int>> ww(n);
for(int i=0;i<n;i++) ww[i]={w[i],i};
sort(w.begin(),w.end());
sort(ww.begin(),ww.end());
ll pre[n], post[n];
for(int i=-1;++i<n;) pre[i]=w[i]+(i?pre[i-1]:0);
for(int i=n;i--;) post[i]=w[i]+(i==n-1?0:post[i+1]);
for(int i=-1;++i<n;) if(pre[i]<=u&&post[n-1-i]>=l) {
ll cur=pre[i];
vector<int> v(i+1); for(int j=-1;++j<=i;) v[j]=ww[j].second;
if(cur>=l) return v;
for(int j=-1;++j<=min(i,n-i);) {
cur += w[n-1-j] - w[j];
v[j] = ww[n-1-j].second;
if(cur>=l) return v;
}
}
return {};
}
// 26 lines