jelly.cpp: In function 'int find_maximum_unique(int, int, std::vector<int>, std::vector<int>)':
jelly.cpp:46:79: error: expected ';' before 'dp'
46 | if(aux.fr > dp[i][j].fr || (aux.fr == dp[i][j].fr && aux.sc > dp[i][j].sc)
| ^
| ;
47 | dp[i][j] = aux;
| ~~
jelly.cpp:46:29: warning: statement has no effect [-Wunused-value]
46 | if(aux.fr > dp[i][j].fr || (aux.fr == dp[i][j].fr && aux.sc > dp[i][j].sc)
| ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
jelly.cpp:48:4: error: expected primary-expression before '}' token
48 | }
| ^
jelly.cpp:47:21: error: expected ')' before '}' token
47 | dp[i][j] = aux;
| ^
| )
48 | }
| ~
jelly.cpp:46:7: note: to match this '('
46 | if(aux.fr > dp[i][j].fr || (aux.fr == dp[i][j].fr && aux.sc > dp[i][j].sc)
| ^
jelly.cpp:48:4: error: expected primary-expression before '}' token
48 | }
| ^