比赛 |
2025.1.4 |
评测结果 |
AAAAAATAAA |
题目名称 |
逆序对数列 |
最终得分 |
90 |
用户昵称 |
袁书杰 |
运行时间 |
2.123 s |
代码语言 |
C++ |
内存使用 |
5.54 MiB |
提交时间 |
2025-01-04 16:50:24 |
显示代码纯文本
#include<bits/stdc++.h>
#define int long long
using namespace std;
int dp[1005][1005],n,k;
signed main(){
freopen("permut.in","r",stdin);
freopen("permut.out","w",stdout);
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
cin>>n>>k;
dp[1][0]=1;
for(int i=2;i<=n;i++){
for(int j=0;j<=k;j++){
for(int m=0;m<=j;m++){
if(m>i-1){
continue;
}
dp[i][j]+=dp[i-1][j-m];
dp[i][j]%=10000;
}
}
}
cout<<dp[n][k]%10000;
return 0;
}