# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
125443 | win11905 | 캥거루 (CEOI16_kangaroo) | C++11 | 2033 ms | 31864 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define long long long
using namespace std;
const int M = 1e9+7;
const int N = 2e3+5;
int n, s, t;
long dp[N][N];
long solve(int i, int j) {
if(j == 0) return 0;
long &now = dp[i][j];
if(now != -1) return now;
if(i == 1) return now = (j == 1 ? 1 : 0);
if(i == s || i == t)
return now = (solve(i-1, j-1) + solve(i-1, j)) % M;
return (solve(i-1, j+1) * j + solve(i-1, j-1) * (j - (i > s ? 1 : 0) - (i > t ? 1 : 0))) % M;
}
int main() {
memset(dp, -1, sizeof dp);
scanf("%d %d %d", &n, &s, &t);
printf("%lld\n", solve(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... |