# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
870073 | blackslex | 캥거루 (CEOI16_kangaroo) | C++17 | 16 ms | 23132 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 2005, M = 1e9 + 7;
ll n, cs, cf, ed, dp[N][N];
int main() {
scanf("%lld %lld %lld", &n, &cs, &cf);
dp[1][1] = 1; ed += (cs == 1 || cf == 1);
for (int i = 1; i < n; i++) {
if (i + 1 == cs || i + 1 == cf) {
for (int j = 1; j <= i; j++) {
dp[i + 1][j + 1] += dp[i][j]; dp[i + 1][j + 1] %= M;
dp[i + 1][j] += dp[i][j]; dp[i + 1][j] %= M;
}
ed++;
} else {
for (int j = 1; j <= i; j++) {
dp[i + 1][j + 1] += (j + 1 - ed) * dp[i][j]; dp[i + 1][j + 1] %= M;
dp[i + 1][j - 1] += (j - 1) * dp[i][j]; dp[i + 1][j - 1] %= M;
}
}
}
printf("%lld", dp[n][1]);
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |