# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
44782 | bogdan10bos | 캥거루 (CEOI16_kangaroo) | C++14 | 24 ms | 14464 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
//#define FILE_IO
const int mod = 1e9 + 7;
int dp[2005][2005];
int main()
{
#ifdef FILE_IO
freopen("1.in", "r", stdin);
freopen("1.out", "w", stdout);
#endif
int N, st, fn;
scanf("%d%d%d", &N, &st, &fn);
dp[1][1] = 1;
int ends = 2;
if(st == 1 || fn == 1) ends--;
for(int i = 2; i <= N; i++)
{
if(i == st || i == fn)
{
for(int j = 1; j <= i; j++)
dp[i][j] = (dp[i - 1][j] + dp[i - 1][j - 1]) % mod;
ends--;
continue;
}
for(int j = 1; j <= i; j++)
{
dp[i][j] = 0;
if(j - 2 + ends >= 0)
dp[i][j] = (1LL * dp[i - 1][j - 1] * (j - 2 + ends)) % mod;
dp[i][j] += (1LL * dp[i - 1][j + 1] * j) % mod;
dp[i][j] %= mod;
}
}
printf("%d\n", 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... |