高级数据结构第七章A . 数列(树状数组逆序对)
Posted 海底看不到四季~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高级数据结构第七章A . 数列(树状数组逆序对)相关的知识,希望对你有一定的参考价值。
代码:
#pragma GCC optimize(2)
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=51000;
int a[maxn],n;
int tr[maxn],b[maxn],tr1[maxn];
int lowbit(int x){
return x&-x;
}
void update(int tr[],int pos,int val){
while(pos<maxn){
tr[pos]+=val;
pos+=lowbit(pos);
}
}
int query(int tr[],int pos){
int res=0;
while(pos){
res+=tr[pos];
pos-=lowbit(pos);
}
return res;
}
int main(){
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);
a[i]++;
update(tr,a[i],1);
b[i]=query(tr,a[i]-1);
}
ll res=0;
for(int i=n;i;i--){
update(tr1,a[i],1);
res+=b[i]*query(tr1,a[i]-1);
}
printf("%lld\\n",res);
return 0;
}
以上是关于高级数据结构第七章A . 数列(树状数组逆序对)的主要内容,如果未能解决你的问题,请参考以下文章
POJ 2299 Ultra-QuickSort(树状数组 + 离散)