# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
543115 | iulia13 | 캥거루 (CEOI16_kangaroo) | C++14 | 17 ms | 16360 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1005;
#define ll long long
const ll mod = 1e9 + 7;
void sum(ll &a, ll b)
{
a += b;
if (a >= mod)
a -= mod;
}
ll dp[N][N];
int main()
{
freopen ("kangaroo.in", "r", stdin);
freopen ("kangaroo.out", "w", stdout);
ll n, cs, cf;
cin >> n >> cs >> cf;
dp[1][1] = 1;
for (ll i = 1; i <= n; i++)
for (ll j = 1; j <= n; j++)
{
if (i == cs || i == cf)
{
sum(dp[i][j], dp[i - 1][j - 1]);
sum(dp[i][j], dp[i - 1][j]);
continue;
}
sum(dp[i][j], dp[i - 1][j + 1] * j % mod);
sum(dp[i][j], (dp[i - 1][j - 1] * ((j - 2) + (i < cs) + (i < cf))) % mod);
}
cout << dp[n][1];
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... |