이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#define MAXN 2010
#define MOD 1000000007
using namespace std;
long long dp[MAXN][MAXN];
int main() {
ios::sync_with_stdio(false); cin.tie(0);
long long n, cs, cf;
cin >> n >> cs >> cf;
dp[1][1] = 1;
for (int i = 2; i <= n; i++) {
for (long long j = 1; j <= i; j++) {
if (i == cs || i == cf) {
dp[i][j] = dp[i-1][j-1] + dp[i-1][j];
if (dp[i][j] >= MOD) dp[i][j] %= MOD;
} else {
dp[i][j] = j * dp[i-1][j+1];
dp[i][j] += (j+1 - (cs < i) - (cs < j)) * dp[i-1][j-1];
if (dp[i][j] >= MOD) dp[i][j] %= MOD;
}
}
}
cout << dp[n][1];
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... |