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 "jelly.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 2e3 + 10;
const int MAXM = 1e4 + 10;
const int INF = 0x3f3f3f3f;
struct baba
{
int escol, dinA;
baba(int E = 0, int D = 0) {escol = E; dinA = D;}
} dp[MAXN][MAXM];
int n, a[MAXN], b[MAXN];
vector<pair<int, int> > buga;
int find_maximum_unique(int x, int y, vector<int> _a, vector<int> _b) {
n = _a.size();
for (int i = 0; i < n; i++)
buga.emplace_back(_a[i], _b[i]);
sort(buga.begin(), buga.end());
for (int i = 1; i <= n; i++) {
a[i] = buga[i - 1].first;
b[i] = buga[i - 1].second;
}
dp[0][0] = baba(0, x);
for (int i = 1; i <= y; i++) dp[0][i] = baba(-INF, -INF);
int resp = 0;
for (int i = 1; i <= n; i++)
{
for (int j = 0; j <= y; j++)
{
dp[i][j] = dp[i-1][j];
if (dp[i][j].dinA >= a[i])
{
dp[i][j].escol++;
dp[i][j].dinA -= a[i];
}
if (j >= b[i])
{
baba aux = dp[i-1][j - b[i]];
aux.escol++;
if (aux.escol > dp[i][j].escol) dp[i][j] = aux;
else if (aux.escol == dp[i][j].escol && aux.dinA > dp[i][j].dinA) dp[i][j] = aux;
}
resp = max(resp, dp[i][j].escol);
}
}
return resp;
}
# | 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... |