This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
#define m_p make_pair
#define fi first
#define se second
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(),(x).end()
typedef long long ll;
const int N = 10004;
int n;
int a[N];
bool dp[N][N];
bool p[N][N];
std::vector<int> find_subset(int l, int r, std::vector<int> w)
{
n = sz(w);
for (int i = 1; i <= n; ++i)
a[i] = w[i - 1];
dp[0][0] = true;
for (int i = 1; i <= n; ++i)
{
int x = a[i];
for (int j = 0; j <= r - x; ++j)
{
if (dp[i - 1][j])
{
dp[i][j + x] = true;
p[i][j + x] = true;
}
}
for (int j = 0; j <= r; ++j)
{
if (dp[i - 1][j])
{
dp[i][j] = true;
p[i][j] = false;
}
}
}
for (int j = l; j <= r; ++j)
{
if (dp[n][j])
{
vector<int> ans;
int x = j;
for (int i = n; i >= 1; --i)
{
if (p[i][x])
{
ans.push_back(i - 1);
x -= a[i];
}
}
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... |