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>
#define pb push_back
using namespace std;
int n;
vector<int> tike[100005][2];
int dokle[100005][2];
long long count_swaps(std::vector<int> s) {
n = s.size()/2;
for(int i=0; i<2*n; i++){
if(s[i] < 0)tike[abs(s[i])][0].pb(i);
else tike[s[i]][1].pb(i);
}
int l = 0;
int shift = 0;
long long res = 0;
while(l < 2*n){
//cout << l << endl;
int koji = s[l];
koji = abs(koji);
int ind;
if(s[l] < 0)ind = 1;
else ind = 0;
int gde = tike[koji][ind][dokle[koji][ind]];
gde -= shift;
res += gde + 1 - ind;
dokle[koji][ind]++;
l += 2;
shift += 1;
}
return res;
}
# | 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... |