seats.cpp: In function 'int swap_seats(int, int)':
seats.cpp:68:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
68 | while(pt1 + 1 != stdec.size() || pt2 + 1 != stinc.size()){
| ~~~~~~~~^~~~~~~~~~~~~~~
seats.cpp:68:43: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
68 | while(pt1 + 1 != stdec.size() || pt2 + 1 != stinc.size()){
| ~~~~~~~~^~~~~~~~~~~~~~~
seats.cpp:69:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
69 | if(pt1 + 1 == stdec.size() || (pt2 + 1 != stinc.size() && stdec[pt1+1].first > stinc[pt2+1].first)){
| ~~~~~~~~^~~~~~~~~~~~~~~
seats.cpp:69:42: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
69 | if(pt1 + 1 == stdec.size() || (pt2 + 1 != stinc.size() && stdec[pt1+1].first > stinc[pt2+1].first)){
| ~~~~~~~~^~~~~~~~~~~~~~~
seats.cpp:100:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
100 | while(pt1 + 1 != stdec.size() || pt2 + 1 != stinc.size()){
| ~~~~~~~~^~~~~~~~~~~~~~~
seats.cpp:100:43: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
100 | while(pt1 + 1 != stdec.size() || pt2 + 1 != stinc.size()){
| ~~~~~~~~^~~~~~~~~~~~~~~
seats.cpp:101:14: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
101 | if(pt1 + 1 == stdec.size() || (pt2 + 1 != stinc.size() && stdec[pt1+1].first > stinc[pt2+1].first)){
| ~~~~~~~~^~~~~~~~~~~~~~~
seats.cpp:101:42: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
101 | if(pt1 + 1 == stdec.size() || (pt2 + 1 != stinc.size() && stdec[pt1+1].first > stinc[pt2+1].first)){
| ~~~~~~~~^~~~~~~~~~~~~~~
seats.cpp:124:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
124 | for(int i = 0;i<rlen.size();i++){
| ~^~~~~~~~~~~~
seats.cpp:126:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
126 | if(i + 1 != rlen.size())
| ~~~~~~^~~~~~~~~~~~~~