이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fi first
#define se second
#define ll long long
#define io ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0)
using namespace std;
const int MOD = 1e9 + 7, MAXN = 2007;
int dp[MAXN][MAXN] = {}, n, cs, cf;
void add(int &a, const int &b)
{
a += b;
if (a >= MOD) a -= MOD;
}
int main()
{
// freopen("test.INP","r", stdin);
io;
cin >> n >> cs >> cf;
dp[0][0] = 1;
for (int i = 1; i < n; ++i)
{
for (int j = 0; j <= i; ++j)
{
if (i == cs || i == cf)
{
add(dp[i][j], dp[i - 1][j]);
add(dp[i][j], 1LL*(j + 1)*dp[i - 1][j + 1] % MOD);
}else
{
add(dp[i][j], 1LL*j*(j + 1)*dp[i - 1][j + 1] % MOD);
if (j) add(dp[i][j], dp[i - 1][j - 1]);
if (i > cs) add(dp[i][j], 1LL*(j + 1)*dp[i - 1][j + 1] % MOD);
if (i > cf) add(dp[i][j], 1LL*(j + 1)*dp[i - 1][j + 1] % MOD);
}
}
}
cout << dp[n - 1][0];
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... |