#include "jelly.h"
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
vector<int> aa(2010), bb(2010);
vector<int> ax(11), by(11);
int nn;
int memo[2020][500][500];
int dp(int x, int y, int i, int ca)
{
if(i == nn && ca == 1)return-1;
if(i == nn)return 0;
if(x <0 || y<0)return 0;
if(memo[i][x][y] != -1)return memo[i][x][y];
return memo[i][x][y]= max(dp(x-aa[i], y, i+1, 1)+1, max(dp(x, y-bb[i], i+1, 1)+1, dp(x, y, i+1, 0)));
}
int find_maximum_unique(int x, int y, vector<int> a, vector<int> b) {
int n = a.size();
nn = n;
for(int i = 0; i<n; i++)
{
aa[i]=a[i];
bb[i]=b[i];
}//cout<<"hola"<<endl;
for(int i = 0; i<2010; i++)
for(int j = 0; j<500; j++)
for(int h = 0; h<500; h++)memo[i][j][h]=-1;
int c = 0;
c = dp(x, y, 0, 0);
return c;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1809 ms |
1966944 KB |
Output is correct |
2 |
Correct |
1016 ms |
1966928 KB |
Output is correct |
3 |
Incorrect |
926 ms |
1966912 KB |
1st lines differ - on the 1st token, expected: '8', found: '7' |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1809 ms |
1966944 KB |
Output is correct |
2 |
Correct |
1016 ms |
1966928 KB |
Output is correct |
3 |
Incorrect |
926 ms |
1966912 KB |
1st lines differ - on the 1st token, expected: '8', found: '7' |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1036 ms |
1967208 KB |
1st lines differ - on the 1st token, expected: '689', found: '1408' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1158 ms |
1967116 KB |
1st lines differ - on the 1st token, expected: '62', found: '1336' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
2217 ms |
1967200 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1809 ms |
1966944 KB |
Output is correct |
2 |
Correct |
1016 ms |
1966928 KB |
Output is correct |
3 |
Incorrect |
926 ms |
1966912 KB |
1st lines differ - on the 1st token, expected: '8', found: '7' |
4 |
Halted |
0 ms |
0 KB |
- |