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<stdio.h>
#include<algorithm>
using namespace std;
int n,tree[1200010];
long long dap;
struct data
{
int x,y;
bool operator<(const data&r)const
{
if(x==r.x) return y<r.y;
return x<r.x;
}
}a[300010];
void update(int k,int x,int y,int p)
{
if(x>p || y<p) return;
tree[k]++;
if(x==y) return;
update(k*2,x,(x+y)/2,p);
update(k*2+1,(x+y)/2+1,y,p);
}
int query(int k,int x,int y,int p)
{
if(x>p) return 0;
if(y>p) return query(k*2,x,(x+y)/2,p)+query(k*2+1,(x+y)/2+1,y,p);
return tree[k];
}
int main()
{
int i,j,s,t=0;
scanf("%d",&n);
for(i=1;i<=n;i++)
{
scanf("%d",&a[i].x);
a[i].y=i;
}
sort(a+1,a+n+1);
for(i=1;i<=n;i++)
{
if(a[i].x!=a[i+1].x)
{
for(j=t+1;j<=i;j++)
{
s=query(1,1,n,a[j].y);
dap+=min(a[j].y-s-1,(n-a[j].y)-(j-1-s)-(i-j));
update(1,1,n,a[j].y);
}
t=i;
}
}
printf("%lld",dap);
return 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... |