shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:6:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=0;i<s.size();i++){
~^~~~~~~~~
shoes.cpp:14:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=i+1;j<s.size();j++){
~^~~~~~~~~
shoes.cpp:29:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=i+1;j<s.size();j++){
~^~~~~~~~~
shoes.cpp:28:6: warning: 'id' may be used uninitialized in this function [-Wmaybe-uninitialized]
int id;
^~
shoes.cpp:13:6: warning: 'id' may be used uninitialized in this function [-Wmaybe-uninitialized]
int id;
^~