# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
553220 | 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
int find_subset(int l, int u, int w[], int n, int result[]){
sort(w, w+n, greater<int>());
ll sum = 0;
int ind = 0;
vector<int> visited(n);
while(ind != n){
if(sum + w[ind] < l){
sum += w[l];
visited[ind] = 1;
}
ind++;
}
for(int i = n-1; i >= 0; i--){
if(!visited[i]){
sum += w[i];
visited[ind] = 1;
break;
}
}
if(sum >= l && sum <= u){
int m = 0;
for(int i = 0; i < n; i++){
if(visited[i]){
cout << i << ' ';
result[i] = w[i];
m++;
}
}
return m;
}
return 0;
}
void solve(){
}
int main()
{
ios::sync_with_stdio(0); cin.tie(0);
int t = 1;
//cin >> t;
while(t--){
solve();
}
}