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"
#include <bits/stdc++.h>
using namespace std;
long long count_swaps(vector<int> s){
long long ans = 0;
int n = s.size();
for(int i = 0;i<n;i+=2){
for(int j = i;j<n;j++){
if(s[j] < 0){
for(int c = j-1;c>=i;c--){
swap(s[c],s[c+1]);
ans++;
}
break;
}
}
for(int j = i+1;j<n;j++){
if(s[j] == -s[i]){
for(int c = j-1;c>=i+1;c--){
swap(s[c],s[c+1]);
ans++;
}
break;
}
}
}
return ans;
}
# | 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... |