jelly.cpp: In function 'int find_maximum_unique(int, int, std::vector<int>, std::vector<int>)':
jelly.cpp:9:8: error: request for member 'size' in 'a', which is of non-class type 'int [510]'
9 | n = a.size();
| ^~~~
jelly.cpp:21:29: error: no match for call to '(std::vector<std::vector<std::vector<int> > >) (int, int&, int&)'
21 | int cur = dp(i - 1, j, k);
| ^
jelly.cpp:23:55: error: no match for call to '(std::vector<std::vector<std::vector<int> > >) (int, int, int&)'
23 | if(j >= a[i]) cur = max(cur, dp(i - 1, j - a[i], k) + 1);
| ^
jelly.cpp:24:55: error: no match for call to '(std::vector<std::vector<std::vector<int> > >) (int, int&, int)'
24 | if(k >= b[i]) cur = max(cur, dp(i - 1, j, k - b[i]) + 1);
| ^