Sort it(树状数组逆序对)

Posted xcfxcf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sort it(树状数组逆序对)相关的知识,希望对你有一定的参考价值。

http://acm.hdu.edu.cn/showproblem.php?pid=2689

#include<bits/stdc++.h>
#define low(x) (x&(-x))
using namespace std;
const int maxn=1e5+5;
typedef long long ll;
int a[maxn];
int n;
void add(int i,int d){
    for(;i>0;i-=low(i))
        a[i]+=d;
}
int ask(int i){
    int cnt=0;
    for(;i<=n;i+=low(i))
        cnt+=a[i];
    return cnt;
}
int main(){
    //freopen("in","r",stdin);
    while(scanf("%d",&n)!= EOF) {
        ll ans = 0;
        memset(a,0,sizeof(a));
        for (int i = 1; i <= n; i++) {
            int num;
            scanf("%d", &num);
            ans += ask(num);
            add(num, 1);
        }
        printf("%lld
",ans);
    }
    return 0;
}

 

以上是关于Sort it(树状数组逆序对)的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2689Sort it 树状数组 逆序对

sort it 树状数组+逆序对

归并排序,树状数组 两种方法求逆序对

树状数组求逆序对

树状数组求逆序对

P1908 逆序对-(树状数组)