jelly.cpp: In function 'int find_maximum_unique(int, int, std::vector<int>, std::vector<int>)':
jelly.cpp:14:8: warning: unused variable 'i' [-Wunused-variable]
14 | int i = min_element(a.begin(), a.end()) - a.begin();
| ^
jelly.cpp:18:8: warning: unused variable 'i' [-Wunused-variable]
18 | int i = min_element(b.begin(), b.end()) - b.begin();
| ^
jelly.cpp:20:10: error: 'i' was not declared in this scope
20 | if ((a[i] < b[i] && x - a[i] >= 0) || (y - b[i] < 0 && x - a[i] >= 0))
| ^
jelly.cpp:8:6: warning: unused variable 'n' [-Wunused-variable]
8 | int n = a.size();
| ^