이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std ;
#define endl '\n'
#define ll long long
vector <int> ans ;
vector <pair <int , int>> vec ;
std::vector<int> find_subset(int l, int u, vector<int> w) {
ll sum = 0 , x = 0 ;
int n = w.size() ;
for ( int i = 0 ; i < n ; i ++ ) vec.push_back({w[i],i}) ;
sort ( vec.begin() , vec.end() ) ;
for ( int i = 0 ; i < n ; i ++ ){
sum += vec[i].first ;
while ( sum > u && x < n ) sum -= vec[x].first , x ++ ;
if ( x == n && sum > u ) return ans ;
if ( sum >= l ){
for ( int j = x ; j <= i ; j ++ ) ans.push_back(vec[j].second) ;
break ;
}
}
sort ( ans.begin() , ans.end() ) ;
return ans ;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |