이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "shoes.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll fenvick[200020];
void fenvick_add(int x, int n)
{
int x1=x;
while(x1<=n)
{
fenvick[x1]++;
x1+=((-x1)&x1);
}
}
ll fenvick_sum(int x)
{
int x1=x, rz=0;
while(x1>0)
{
rz+=fenvick[x1];
x1-=((-x1)&x1);
}
return rz;
}
ll count_swaps(vector<int>S)
{
int n=S.size()/2;
stack<pair<int, int> >patike[n+1];
ll reez=0;
int poooz[n*2+1]={0};
for(int i=0; i<2*n; i++)
{
if(patike[abs(S[i])].empty())
{
if(S[i]<0)patike[abs(S[i])].push({i+1, -1});
else patike[abs(S[i])].push({i+1, 1});
}
else
{
if(patike[abs(S[i])].top().second>0 and S[i]>0)
patike[abs(S[i])].push({i+1, 1});
else if(patike[abs(S[i])].top().second<0 and S[i]<0)
patike[abs(S[i])].push({i+1, -1});
else if(patike[abs(S[i])].top().second<0 and S[i]>0)
{
poooz[i+1]=patike[abs(S[i])].top().first;
poooz[patike[abs(S[i])].top().first]=i+1;
patike[abs(S[i])].pop();
}
else if(patike[abs(S[i])].top().second>0 and S[i]<0)
{
poooz[i+1]=patike[abs(S[i])].top().first;
poooz[patike[abs(S[i])].top().first]=i+1;
patike[abs(S[i])].pop();
reez++;
}
}
}
for(int i=1; i<=2*n; i++)
{
if(fenvick[i]==0)
{
fenvick_add(i, 2*n);
fenvick_add(poooz[i], 2*n);
}
if(fenvick[i]==1)
{
reez+=fenvick_sum(i)-fenvick_sum(poooz[i]);
}
}
return reez;
}
# | 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... |