概述
求逆序数 ----》 离散化
#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
using namespace std;
#define M 1000005
typedef __int64 LL;
LL a[M];
int n;
struct node
{
LL x,y;
}s[M];
bool cmp(node p,node q)
{
return p.x < q.x;
}
LL lowbit(LL x)
{
return x&(-x);
}
void add(LL pos,LL num)
{
while(pos <= n)
{
a[pos]+=num;
pos += lowbit(pos);
}
}
LL getsum(LL pos)
{
LL res = 0;
while(pos > 0)
{
res += a[pos];
pos -= lowbit(pos);
}
return res;
}
int main()
{
while(scanf("%d",&n)!=EOF)
{
memset(a,0,sizeof(a));
for(LL i = 1;i <= n;i++)
{
scanf("%I64d",&s[i].x);
s[i].y = i;
}
sort(s+1,s+n+1,cmp);
LL ret = 0;
for(LL i = 1;i <= n;i++)
{
add(s[i].y,1);
ret += i - getsum(s[i].y);
}
printf("%I64dn",ret);
}
}
最后
以上就是精明嚓茶为你收集整理的hdu-Frosh Week(树状数组)的全部内容,希望文章能够帮你解决hdu-Frosh Week(树状数组)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复