# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
870069 | blackslex | 캥거루 (CEOI16_kangaroo) | C++17 | 47 ms | 55172 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, dp[N][N][3];
int main() {
scanf("%lld %lld %lld", &n, &cs, &cf);
if (cs == 1 || cf == 1) dp[1][1][1] = 1;
else dp[1][1][0] = 1;
for (int i = 1; i < n; i++) {
if (i + 1 == cs || i + 1 == cf) {
for (int j = 1; j <= i; j++) {
for (int k = 0; k < 2; k++) {
dp[i + 1][j + 1][k + 1] += dp[i][j][k]; dp[i + 1][j + 1][k + 1] %= M; // fix, no merge
dp[i + 1][j][k + 1] += dp[i][j][k]; dp[i + 1][j][k + 1] %= M; // fix, merge
}
}
} else {
for (int j = 1; j <= i; j++) {
for (int k = 0; k < 3; k++) {
dp[i + 1][j + 1][k] += (j + 1 - k) * dp[i][j][k]; dp[i + 1][j + 1][k] %= M; // insert, no merge
dp[i + 1][j - 1][k] += (j - 1) * dp[i][j][k]; dp[i + 1][j - 1][k] %= M; // insert, merge
}
}
}
}
printf("%lld", dp[n][1][2]);
}
컴파일 시 표준 에러 (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... |