이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <molecules.h>
#include <bits/stdc++.h>
using namespace std;
vector<int>ans;
vector<int>ww;
int ll,uu,n;
map<pair<int,int>,bool>mp;
bool dp(int i, int val) {
if(val <= uu && val >= ll) return true;
if(i == n) return false;
if(mp[{i,val}]) return false;
if(val+ww[i] <= uu) {
if(dp(i+1,val+ww[i])) {
ans.push_back(i+1);
return true;
}
}
if(dp(i+1,val)) {
ans.push_back(i+1);
return true;
}
return false;
}
vector<int> find_subset(int l, int u, vector<int> w) {
ww=w;
n=w.size();
ll=l,uu=u;
if(dp(0,0))
return ans;
return {};
}
# | 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... |