이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "molecules.h"
using namespace std;
#define pb push_back
int n, l, u;
vector<int> w;
vector<int> backtrack;
vector<int> pre;
bool solve(int i, int curr)
{
if(curr>=l&&curr<=u)
return true;
if(curr>u)
return false;
int temp = 0;
if(i==0)
temp = curr + pre[n-1];
else
temp = curr + pre[n-1]-pre[i-1];
if(temp<l)
return false;
if(i==n)
{
return false;
}
bool flag = false;
for(int j = i; j<n; j++)
{
backtrack.pb(w[j]);
flag = solve(j+1, curr+w[j]);
if(flag)
break;
backtrack.pop_back();
}
return flag;
}
vector<int> find_subset(int L, int U, vector<int> W)
{
n = (int)W.size();
l = L;
u = U;
w = W;
pre.assign(n, 0);
pre[0] = w[0];
for(int i = 1; i<n; i++)
pre[i] = pre[i-1] + w[i];
bool flag = solve(0, 0);
if(flag)
{
vector<int> result = backtrack;
return result;
}
vector<int> result(0);
return result;
}
# | 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... |