dango3.cpp: In function 'void Solve(int, int)':
dango3.cpp:19:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | for(int j = 0; j < sticks[mid].size(); j++) v.erase(find(v.begin(), v.end(), sticks[mid][j]));
| ~~^~~~~~~~~~~~~~~~~~~~
dango3.cpp:21:7: error: 'Query' was not declared in this scope
21 | if(Query(v) == m-2) hi = mid;
| ^~~~~
dango3.cpp:24:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int j = 0; j < sticks[mid].size(); j++) v.pb(sticks[mid][j]);
| ~~^~~~~~~~~~~~~~~~~~~~
dango3.cpp:28:30: error: 'Answer' was not declared in this scope
28 | for(int i = 1; i <= m; i++) Answer(sticks[i]);
| ^~~~~~