luoguP1908ybtoj树状数组例题2逆序对
Posted SSL_ZZL
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了luoguP1908ybtoj树状数组例题2逆序对相关的知识,希望对你有一定的参考价值。
Link
luogu传送门
ybtoj传送门
题面
//因为不知道侵不侵权所以就是题面是私密的,有账号的直接看转送门就可了
题目大意
给定一个序列
a
1
,
a
2
,
a
3
.
.
.
a
n
a_1,a_2,a_3...a_n
a1,a2,a3...an,逆序对就是序列中
a
i
>
a
j
a_i>a_j
ai>aj且
i
<
j
i<j
i<j
求有多少个逆序对
解题思路
求有多少个逆序对,那么也可以是 当前序列长度 - 当前顺序对数量
先求出序列中的数的大小关系=》离散化,离散化后就可以得到每个数的大小排名
将大小排名作为新的编号,往树状数组上加
=》这样sum()出来的数字,就是比编号小(也就是比原来数小)的数字个数,也就是顺序对个数啦
Code
#include <algorithm>
#include <iostream>
#include <cstdio>
#define ll long long
using namespace std;
struct DT{
int s, x, i;
}a[500100];
int n;
ll tree[500100], ans;
bool cmp1(const DT&k, const DT&l) {return k.s < l.s;}
bool cmp2(const DT&k, const DT&l) {return k.i < l.i;}
void demo() {
sort(a + 1, a + 1 + n, cmp1);
a[1].x = 1;
for(int i = 2, k = 1; i <= n; i++)
if (a[i].s == a[i - 1].s) a[i].x = k;
else a[i].x = ++k;
sort(a + 1, a + 1 + n, cmp2);
}
int lowbit(int x) {return x & -x;}
void add(int x, int y) {
for(; x <= n; x += lowbit(x))
tree[x] += y;
}
ll sum(int x) {
ll ans = 0;
for(; x; x -= lowbit(x))
ans += tree[x];
return ans;
}
int main() {
scanf("%d", &n);
for(int i = 1; i <= n; i++) {
scanf("%d", &a[i].s);
a[i].i = i;
}
demo(); //离散化
for(int i = 1; i <= n; i++) {
add(a[i].x, 1ll); //将大小排名作为新的编号,往树状数组上加
ans += 1ll * i - sum(a[i].x); //当前序列长度 - 当前顺序对数量
}
printf("%lld", ans);
}
以上是关于luoguP1908ybtoj树状数组例题2逆序对的主要内容,如果未能解决你的问题,请参考以下文章