# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
975497 | duckindog | 캥거루 (CEOI16_kangaroo) | C++17 | 11 ms | 16472 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 2'000 + 10,
M = 1'000'000'007;
int n, st, ed;
struct modint {
int value;
modint(int x = 0) : value(x) {}
modint operator + (const modint& rhs) { return (value + rhs.value) % M; }
modint operator - (const modint& rhs) { return ((value - rhs.value) % M + M) % M; }
modint operator * (const modint& rhs) { return 1ll * value * rhs.value % M; }
modint operator += (const modint& rhs) { value = (value + rhs.value) % M; return *this; }
modint operator -= (const modint& rhs) { value = ((value - rhs.value) % M + M) % M; return *this; }
modint operator *= (const modint& rhs) { value = 1ll * value * rhs.value % M; return *this; }
friend ostream& operator << (ostream& os, const auto& rhs) { return os << rhs.value; }
} f[N][N];
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
cin >> n >> st >> ed;
f[1][1] = 1;
for(int i = 2; i <= n; ++i) {
for(int j = 1; j <= i; ++j) {
auto& ret = f[i][j];
if (i == st || i == ed) ret = f[i - 1][j] + f[i - 1][j - 1];
else ret = f[i - 1][j + 1] * j + f[i - 1][j - 1] * (j - (i > st) - (i > ed));
}
}
cout << f[n][1] << "\n";
}
컴파일 시 표준 에러 (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... |