题解
2024-03-17 15:28:32
发布于:上海
11阅读
0回复
0点赞
#include<iostream>
using namespace std;
const int N=10007;
long long s[100][100];
int main(){
int n,r;
cin>>n>>r;
for(int i=0;i<n;i++)s[0][i]=1;
for(int i=1;i<r;i++){
for(int j=i;j<n;j++){
s[i][j]=s[i][j-1]*(i+1)+s[i-1][j-1];
s[i][j]%=N;
}
}
cout<<s[r-1][n-1];
return 0;
}
这里空空如也
有帮助,赞一个