码迷,mamicode.com
首页 > 其他好文 > 详细

求逆序对

时间:2018-11-02 23:44:32      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:for   src   mod   记录   mat   div   sharp   namespace   ios   

技术分享图片

技术分享图片

 

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

 

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 } 

 

求逆序对

标签:for   src   mod   记录   mat   div   sharp   namespace   ios   

原文地址:https://www.cnblogs.com/lcan/p/9898465.html

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