This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "shoes.h"
long long count_swaps(std::vector<int> s) {
if (s.size()<=2000){
long long counterTOT=0;
for (unsigned int i=0; i<s.size(); i+=2){
unsigned int j;
j=i+1;
while(s[j]!=s[i]*-1){
++j;
}
while(i+1!=j){
std::swap(s[j],s[j-1]);
++counterTOT;
--j;
}
if (s[j]<0) {std::swap(s[j],s[j-1]); ++counterTOT;}
}
return counterTOT;
}else{
long long x=s.size()/2;
return x*(x-1)/2;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |