# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
49340 | 3zp | 캥거루 (CEOI16_kangaroo) | C++14 | 2073 ms | 56668 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int dp[209][209][209][3];
int mod = 1e9+ 7;
main(){
int n,l,r;
cin >> n >> l >> r;
dp[1][1][1][1] = 1;
dp[1][1][1][0] = 1;
for(int N = 2; N <= n; N++){
for(int L = 1; L <= n; L++){
for(int R = 1; R <= n; R++){
for(int D = 0; D < 2; D++){
if(L == R) continue;
if(D == 0){
for(int nL = L + 1; nL <= N; nL++){
int nR = R;
if(R > L) nR--;
dp[N][L][R][D] += dp[N - 1][nL - 1][nR][1 - D];
if(dp[N][L][R][D] > mod) dp[N][L][R][D] -= mod;
}
}
else {
for(int nL = L - 1; nL >= 1; nL--){
int nR = R;
if(R > L) nR--;
dp[N][L][R][D] += dp[N - 1][nL][nR][1 - D];
if(dp[N][L][R][D] > mod) dp[N][L][R][D] -= mod;
}
}
}
}
}
}
cout << (dp[n][l][r][0] + dp[n][l][r][1]) % mod << endl;
}
컴파일 시 표준 에러 (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... |