이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// it is your desire to work hard
#include<bits/stdc++.h>
#define pb push_back
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int maxn=2e3+3;
const int mod=1e9+7;
int n;
int dp[maxn][maxn];
int cs, cf;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin>>n;
cin>>cs>>cf;
dp[1][1]=1;
for(int i=2; i<=n; i++){
for(int j=1; j<=n; j++){
int rem=0;
if(i>cs) rem++;
if(i>cf) rem++;
if(i==cs or i==cf){
dp[i][j] = dp[i-1][j-1] + dp[i-1][j];
}else{
dp[i][j] = (dp[i-1][j+1]*j)%mod + (dp[i-1][j-1]*(j-rem))%mod;
}
dp[i][j]%=mod;
}
}
cout<<dp[n][1]<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |