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>
long long count_swaps(std::vector<int> s) {
long long len=s.size();
len=len/2;
int leftpos[len];
long long pos=0;
long long ans=0;
for(int i=0;i<2*len;i++)
{
if(s[i]<0)
{
leftpos[pos]=i;
pos++;
}
}
for(int i=0;i<len;i++)
{
long long dif=abs(i+i-leftpos[i]);
ans=ans+dif;
}
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... |