#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][j-val[i].b];
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 |
1 |
Incorrect |
0 ms |
340 KB |
1st lines differ - on the 1st token, expected: '8', found: '5' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
1st lines differ - on the 1st token, expected: '8', found: '5' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
8404 KB |
1st lines differ - on the 1st token, expected: '689', found: '58' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
18 ms |
29012 KB |
1st lines differ - on the 1st token, expected: '62', found: '60' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
19 ms |
24936 KB |
1st lines differ - on the 1st token, expected: '154', found: '146' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
1st lines differ - on the 1st token, expected: '8', found: '5' |
2 |
Halted |
0 ms |
0 KB |
- |