# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
54402 | zadrga | 캥거루 (CEOI16_kangaroo) | C++14 | 49 ms | 33980 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define INF (1LL << 55)
#define MOD (1000 * 1000 * 1000 + 7)
#define maxn 2111
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
ll dp[maxn][maxn]; // dp[first x elements already distributed][number of groups]
int main(){
int n, s, e;
scanf("%d%d%d", &n, &s, &e);
int cnt = 0;
dp[0][0] = 1;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n; j++){
if(i == e || i == s){ // merge with first/last group + add a new group
dp[i][j] = (dp[i - 1][j] + dp[i - 1][j - 1]) % MOD;
}
else{ // add a new group between 2 groups (x + 1 free spaces - start/end positions) + join two groups (x - 1 free spaces between)
dp[i][j] = (dp[i - 1][j - 1] * ((j - 1) + 1 - cnt) + dp[i - 1][j + 1] * ((j + 1) - 1)) % MOD;
}
}
if(i == e || i == s)
cnt++;
}
printf("%lld\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... |