이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "jelly.h"
#define fr first
#define sc second
using namespace std;
const int INF = 0x3f3f3f3f;
const int MAXN = 2e3+10;
const int MAXX = 1e4+10;
struct jelly
{
int a,b;
};
jelly val[MAXN];
bool cmp(jelly p, jelly q)
{
return p.a < q.a;
}
pair<int,int> dp[MAXN][MAXX];
int find_maximum_unique(int x, int y, vector<int> a, vector<int> b)
{
int n = a.size();
for(int i = 1; i <= n; i++)
{
val[i].a = a[i-1];
val[i].b = b[i-1];
}
sort(val+1,val+(n+1),cmp);
dp[0][0] = {0,x};
for(int i = 1; i <= y; i++)
dp[0][i] = {-1,-1};
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].sc >= val[i].a)
{
dp[i][j].fr++;
dp[i][j].sc -= val[i].a;
}
if(j >= val[i].b)
{
pair<int,int> aux = dp[i-1][j-val[i].b];
aux.fr++;
if(aux.fr > dp[i][j].fr || (aux.fr == dp[i][j].fr && aux.sc > dp[i][j].sc))
dp[i][j] = aux;
}
resp = max(resp,dp[i][j].fr);
}
}
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... |