码迷,mamicode.com
首页 > 编程语言 > 详细

SGU180 Inversions(树状数组求逆序数)

时间:2018-10-02 22:18:41      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:uniq   type   hand   def   const   stdin   aaaaa   inf   -name   

题目

技术分享图片技术分享图片?

思路:先离散化数据然后树状数组搞一下求逆序数。

离散化的方法https://blog.csdn.net/gokou_ruri/article/details/7723378

自己对用树状数组求逆序数的理解:输入数据并利用树状数组求出前边比它小和等于它的数据有几个,用输入数据的总的个数减去比它小的数就是比它大的数res,将所有的res加起来就是要求的序列的逆序数。

如图:

技术分享图片技术分享图片?

把所有的res加起来就是答案了

代码:

技术分享图片
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <queue>
#include <vector>
#include <algorithm>
#define FRE() freopen("in.txt","r",stdin)
#define INF 0x3f3f3f3f

using namespace std;
typedef long long ll;
typedef pair<double,int> P;
const int maxn = 70000;
int n;
int a[maxn],b[maxn],tree[maxn];

int lowbit(int x)
{
    return x & -x;
}
void Add(int x)
{
    while(x <= n)
    {
        tree[x]++;
        x += lowbit(x);
    }
}
int getSum(int x)
{
    int res = 0;
    while(x>0)
    {
        res += tree[x];
        x -= lowbit(x);
    }
    return res;
}
int main()
{
    scanf("%d",&n);
    for(int i = 0; i < n; i++)
    {
        scanf("%d",&a[i]);
        b[i] = a[i];
    }
    memset(tree,0,sizeof(tree));
    sort(b, b+n);
    int len = unique(b, b+n) - b;
    for(int i = 0; i < n; i++)
    {
        a[i] = lower_bound(b, b + len, a[i]) - b + 1;
    }
    ll sum = 0;
    for(int i = 0; i < n; i++)
    {
        Add(a[i]);
        sum += i + 1 - getSum(a[i]);
    }
    printf("%I64d\n",sum);
    return 0;
}
View Code

 

SGU180 Inversions(树状数组求逆序数)

标签:uniq   type   hand   def   const   stdin   aaaaa   inf   -name   

原文地址:https://www.cnblogs.com/sykline/p/9737781.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!