jelly.cpp:1:39: error: 'std::vector' has not been declared
1 | int find_maximum_unique(int x, int y, std::vector<int> a, std::vector<int> b) {
| ^~~
jelly.cpp:1:50: error: expected ',' or '...' before '<' token
1 | int find_maximum_unique(int x, int y, std::vector<int> a, std::vector<int> b) {
| ^
jelly.cpp: In function 'int find_maximum_unique(int, int, int)':
jelly.cpp:3:17: error: 'a' was not declared in this scope
3 | int n = a.size();
| ^
jelly.cpp:4:17: error: 'vector' was not declared in this scope
4 | vector< vector<int> > dp (x+1, vector<int>(y+1));
| ^~~~~~
jelly.cpp:4:24: error: expected primary-expression before 'int'
4 | vector< vector<int> > dp (x+1, vector<int>(y+1));
| ^~~
jelly.cpp:9:33: error: 'dp' was not declared in this scope
9 | dp[i-a[k]][j]=max(dp[i][j]+1,dp[i-a[k]][j]);
| ^~
jelly.cpp:9:47: error: 'max' was not declared in this scope
9 | dp[i-a[k]][j]=max(dp[i][j]+1,dp[i-a[k]][j]);
| ^~~
jelly.cpp:14:35: error: 'b' was not declared in this scope
14 | for(int j=b[k];j<=y;j++){
| ^
jelly.cpp:15:33: error: 'dp' was not declared in this scope
15 | dp[i][j-b[k]]=max(dp[i][j]+1,dp[i][j-b[k]]);
| ^~
jelly.cpp:15:47: error: 'max' was not declared in this scope
15 | dp[i][j-b[k]]=max(dp[i][j]+1,dp[i][j-b[k]]);
| ^~~