SGU180 Inversions(树状数组求逆序数)
Posted sykline
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SGU180 Inversions(树状数组求逆序数)相关的知识,希望对你有一定的参考价值。
题目:
思路:先离散化数据然后树状数组搞一下求逆序数。
离散化的方法: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 ",sum); return 0; }
以上是关于SGU180 Inversions(树状数组求逆序数)的主要内容,如果未能解决你的问题,请参考以下文章
CF749E Inversions After Shuffle 解题报告 (期望 树状数组)
Codeforces Round #301 (Div. 2) E. Infinite Inversions —— 逆序对 离散化 + 树状数组
PAT-T1027 Larry and Inversions (树状数组)