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:10:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=i+1;j<s.size();j++){
~^~~~~~~~~
shoes.cpp:25:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j=i+1;j<s.size();j++){
~^~~~~~~~~
shoes.cpp:9:6: warning: 'id' may be used uninitialized in this function [-Wmaybe-uninitialized]
int id;
^~
shoes.cpp:24:6: warning: 'id' may be used uninitialized in this function [-Wmaybe-uninitialized]
int id;
^~