求逆序对

Posted lcan

tags:

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

技术分享图片

技术分享图片

 

 如果是搜索的话,不好记录逆序对的个数,其实无论怎样,逆序对的个数都不好计算

 

1~n的排列 除了n!的暴力外,很大概率上是动态规划(把数从小到大一个一个插入进去的过程)

 

f[i][j]表示插完了第i个数,逆序对数是几

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<algorithm>
 4 #include<cstring>
 5 #include<cmath>
 6 using namespace std;
 7 const int maxn=107;
 8 const int mod=10000; 
 9 int n,K;
10 int f[maxn][maxn*maxn];
11 int main(){
12   cin>>n>>K;
13   f[0][0]=1;
14   for(int i=1;i<=n;i++){
15     for(int j=0;j<=K;j++){
16       for(int k=0;k<=i-1&&j-k>=0;k++){
17         f[i][j]+=f[i-1][j-k];f[i][j]%=mod;
18       }
19     }
20   }
21   cout<<f[n][K]%mod<<endl;
22 } 

 

以上是关于求逆序对的主要内容,如果未能解决你的问题,请参考以下文章

树状数组求逆序对

归并排序求逆序对

归并排序求逆序对

线段树求逆序对

一道编程题:求逆序对的个数

Another Version of Inversion 二维树状数组求逆序对