tickets.cpp: In function 'long long int find_maximum(int, std::vector<std::vector<int> >)':
tickets.cpp:18:15: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
18 | for(int i=0;i<kek.size();i++)
| ~^~~~~~~~~~~
tickets.cpp:19:31: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
19 | answer+=kek[i]*(kek.size()/2>i?-1:1); allocate_tickets(vanswer);
| ~~~~~~~~~~~~^~
tickets.cpp:18:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
18 | for(int i=0;i<kek.size();i++)
| ^~~
tickets.cpp:19:41: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
19 | answer+=kek[i]*(kek.size()/2>i?-1:1); allocate_tickets(vanswer);
| ^~~~~~~~~~~~~~~~