# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
23897 | khsoo01 | 캥거루 (CEOI16_kangaroo) | C++11 | 26 ms | 33424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod = 1e9+7;
ll n, s, e, dt[2005][2005];
ll solve (ll X, ll Y) {
dt[n+1][0] = 1;
ll ocu = 0;
for(int i=n;i>=1;i--) {
for(int j=1;j<=n-i+1;j++) {
if(i == s) dt[i][j] = dt[i+1][j-X];
else if(i == e) dt[i][j] = dt[i+1][j-Y];
else dt[i][j] = (dt[i+1][j-1] * (j - ocu) + dt[i+1][j+1] * j) % mod;
}
if(i == s || i == e) ocu++;
}
return dt[1][1];
}
int main()
{
scanf("%lld%lld%lld",&n,&s,&e);
printf("%lld\n",(solve(0, (n+1)%2) + solve(1, n%2)) % mod);
}
컴파일 시 표준 에러 (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... |