MYF

UVa 10810 Ultra-QuickSort

题目链接

UVa 10810

解题方法:离散化+树状数组

题目分析

题目大意

给定数字n,再给n个数,问这些数字的逆序数,当n=0时结束。

解析

离散化+树状数组

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//POJ2299
//离散化+树状数组
#include <algorithm>
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
#define maxn 500005
int c[maxn],n;
int a[maxn]={},t[maxn]={};
int lowbit(int x){
return x&(-x);
}
void update(int pos,int val){
while (pos<=n) {
c[pos]+=val;
pos+=lowbit(pos);
}
}
int sum(int pos){
int ans=0;
while (pos>0) {
ans+=c[pos];
pos-=lowbit(pos);
}
return ans;
}
int main(){
int tmp;
while (scanf("%d",&n),n) {
long long ans=0;
memset(c, 0, sizeof(c));
for (int i=1; i<=n; i++) {
scanf("%d",&tmp);
a[i]=t[i]=tmp;
}
sort(t+1, t+1+n);
int cnt=unique(t+1, t+n+1)-t-1;
for (int i=1; i<=n; i++)
a[i]=lower_bound(t+1, t+1+cnt, a[i])-t;
for (int i=1; i<=n; i++) {
update(a[i], 1);
ans+=i-sum(a[i]);
}
cout<<ans<<endl;
}
}