记录编号 |
163295 |
评测结果 |
AAAAAAAAAA |
题目名称 |
排序工作量 |
最终得分 |
100 |
用户昵称 |
OI88 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.053 s |
提交时间 |
2015-05-23 20:18:14 |
内存使用 |
11.76 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<iostream>
using namespace std;
double data[500005];
int n,aa[500005];
struct Node
{
double v;
int order;
}a[500005];
int lowbit(int x)
{
return x&(-x);
}
void modify(int pos,double ds)
{
while(pos<=n)
{
data[pos]+=ds;
pos+=lowbit(pos);
}
return;
}
double sum(int x)
{
double he=0.0;
while(x>=1)
{
he+=data[x];
x-=lowbit(x);
}
return he;
}
bool comp(Node a,Node b)
{
return a.v<b.v;
}
int main()
{
ios::sync_with_stdio(false);
freopen("sortt.in","r",stdin);
freopen("sortt.out","w",stdout);
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>a[i].v;
a[i].order=i;
}
sort(a+1,a+n+1,comp);
for(int i=1;i<=n;i++)
aa[a[i].order]=i;
int num=0;
for(int i=1;i<=n;i++)
{
modify(aa[i],1);
num+=i-sum(aa[i]);
}
cout<<num;
}