이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
using namespace std;
vector<int> lista[200011];
long long int temp[200011];
long long count_swaps(vector<int> v){
long long int total=0, z=v.size();
for(int i=1; i<200011; ++i){
for(int j=i; j<200011; j+=j&-j){
temp[j]++;
}
}
for(int i=0; i<z; ++i){
int a=v[i];
if(a<0){
if(!lista[-a+z].empty()){
long long int temp1=0, temp2=0;
for(int j=i+1; j>0; j-=j&-j){
temp1+=temp[j];
}
temp1+=temp[0];
for(int j=lista[-a+z].front()+1; j>0; j-=j&-j){
temp2+=temp[j];
}
temp2+=temp[0];
total+=temp1-temp2;
for(int j=lista[-a+z].front()+1; j<200011; j+=j&-j){
temp[j]++;
}
for(int j=i+1; j<200011; j+=j&-j){
temp[j]--;
}
lista[-a+z].erase(lista[-a+z].begin());
} else {
lista[a+z].push_back(i);
}
} else {
if(!lista[-a+z].empty()){
long long int temp1=0, temp2=0;
for(int j=i+1; j>0; j-=j&-j){
temp1+=temp[j];
}
temp1+=temp[0];
for(int j=lista[-a+z].front()+1; j>0; j-=j&-j){
temp2+=temp[j];
}
temp2+=temp[0];
total+=temp1-temp2;
total--;
for(int j=lista[-a+z].front()+1; j<200011; j+=j&-j){
temp[j]++;
}
for(int j=i+1; j<200011; j+=j&-j){
temp[j]--;
}
lista[-a+z].erase(lista[-a+z].begin());
} else {
lista[a+z].push_back(i);
}
}
}
return total;
}
# | 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... |