이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fi first
#define se second
#define ll long long
const ll MAX=2e5+10, S=1<<19;
ll n, curr, licz[MAX], x[MAX];
vector<ll>vec[MAX];
ll t[2*S+10];
void Insert(ll v){
v+=S;
while(v){
t[v]++;
v/=2;
}
}
ll Query(ll a, ll b){
ll w=0;
a+=S-1, b+=S+1;
while(a+1<b){
if(a%2==0) w+=t[a+1];
if(b%2==1) w+=t[b-1];
a/=2, b/=2;
}
return w;
}
ll a[MAX];
ll count_swaps(vector<int>xx){
n=xx.size()/2;
for(ll i=1; i<=2*n; i++){
curr=xx[i-1];
if(curr>0) vec[curr].pb(i);
a[i]=curr;
}
ll akt=0;
for(ll i=1; i<=2*n; i++){
curr=a[i];
if(curr<0)
x[i]=akt*2, x[vec[-curr][licz[-curr]++]]=akt*2+1;
else
x[i]=akt*2+1, x[vec[-curr][licz[-curr]++]]=akt*2;
akt++;
}
ll wyn=0;
for(ll i=1; i<=2*n; i++){
wyn+=Query(x[i]+1, S-1);
Insert(x[i]);
}
return wyn;
}
/*int main(){
ios_base::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
}*/
# | 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... |