Submission #197053

#TimeUsernameProblemLanguageResultExecution timeMemory
197053BasilhijazArranging Shoes (IOI19_shoes)C++14
0 / 100
2 ms400 KiB
#include "shoes.h" #include <bits/stdc++.h> using namespace std; long long count_swaps(std::vector<int> s) { int cnt = 0; long long swaps = 0; vector <pair<int, int> > a(s.size()); for(int i = 0; i < s.size(); i++){ a[i].first = s[i]; a[i].second = i; } for(int i = 0; i < s.size(); i++){ if(s[i] < 0){ swaps += abs(i - (cnt * 2)); cnt++; for(int j = 0; j < s.size(); j++){ if(s[j] == s[i]*-1){ swaps += abs(j - (cnt*2) + 1); s[j] = 0; } } } } return swaps; }

Compilation message (stderr)

shoes.cpp: In function 'long long int count_swaps(std::vector<int>)':
shoes.cpp:7:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i = 0; i < s.size(); i++){
                    ~~^~~~~~~~~~
shoes.cpp:11:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int i = 0; i < s.size(); i++){
                    ~~^~~~~~~~~~
shoes.cpp:15:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
             for(int j = 0; j < s.size(); j++){
                            ~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...