Main.cpp: In function 'void solve()':
Main.cpp:28:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::array<int, 3> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | while(qp < Q.size() && Q[qp][0] == t){
| ~~~^~~~~~~~~~
Main.cpp:29:19: warning: comparison of integer expressions of different signedness: 'std::array<int, 3>::value_type' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | if(Q[qp][1] >= a.size()){
Main.cpp:38:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | while(p2 < a.size() && a[p2] < a[i]) b.pb(a[p2++]);
| ~~~^~~~~~~~~~
Main.cpp:49:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::array<int, 3> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | while(qp < Q.size()){
| ~~~^~~~~~~~~~
Main.cpp:50:17: warning: comparison of integer expressions of different signedness: 'std::array<int, 3>::value_type' {aka 'int'} and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | if(Q[qp][1] >= a.size()){
Main.cpp: In function 'int main()':
Main.cpp:62:15: warning: unused variable 'aa' [-Wunused-variable]
62 | int tt = 1, aa;
| ^~