# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
318178 | a14789654 | 캥거루 (CEOI16_kangaroo) | C++17 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///https://oj.uz/problem/view/CEOI16_kangaroo
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 2007, MOD = 1e9 + 7;
int cs, cf, n, f[MAXN][MAXN];
void add(int &a, int b)
{
a += b;
if (a >= MOD) a -= MOD;
}
int main()
{
if (fopen("tst.inp", "r"))
{
freopen("tst.inp", "r", stdin);
freopen("tst.out", "w", stdout);
}
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n >> cs >> cf;
if (cs > cf) swap(cs, cf);
f[0][0] = 1;
for (int i = 0; i <= n; ++i)
for (int j = 0; j <= n; ++j)
if (f[i][j] != - 1)
{
if (i != cs && i != cf)
{
if (i < n && j) add(f[i + 1][j - 1], 1LL * f[i][j] * j * (j - 1) % MOD);
if (i < n && j < n) add(f[i + 1][j + 1], f[i][j]);
if (i > cs && i < n && j) add(f[i + 1][j - 1], 1LL * f[i][j] * j % MOD);
if (i > cf && i < n && j) add(f[i + 1][j - 1], 1LL * f[i][j] * j % MOD);
}
else
{
add(f[i + 1][j], f[i][j]);
if (j) add(f[i + 1][j - 1], 1LL * f[i][j] * j % MOD);
}
}
cout << f[n][0];
return 0;
}
컴파일 시 표준 에러 (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... |