tickets.cpp: In function 'long long int find_maximum(int, std::vector<std::vector<int> >)':
tickets.cpp:61:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<name> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
61 | while(j < upper.size()) {
| ~~^~~~~~~~~~~~~~
tickets.cpp:62:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<name>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
62 | for(int q = 0;q < upper[j].size();q++) {
| ~~^~~~~~~~~~~~~~~~~
tickets.cpp:74:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<name> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
74 | while(j < lower.size()) {
| ~~^~~~~~~~~~~~~~
tickets.cpp:76:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<name>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
76 | for(int q = 0;q < lower[j].size();q++) {
| ~~^~~~~~~~~~~~~~~~~
tickets.cpp:87:22: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
87 | if(round[q].size() != N) {
| ~~~~~~~~~~~~~~~~^~~~
tickets.cpp:89:9: warning: unused variable 'n' [-Wunused-variable]
89 | int* n = new int[100000000];
| ^