# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
834235 | Gondozu | 캥거루 (CEOI16_kangaroo) | C++14 | 2 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define F first
#define S second
#define all(v) v.begin(),v.end()
#define Gondozu ios::sync_with_stdio(false);cout.tie(NULL);cin.tie(NULL);
using namespace std;
using ll = long long;
using pi = pair<int, int>;
using vi = vector<int>;
using vpi = vector <pair<int, int>>;
using vvi = vector <vector<int>>;
const int OO = 1e9 + 5;
const int N = 2e3 + 5, MOD = 1e9+7;
int n, s, e;
ll dp[N][N];
ll add(ll a, ll b) {
a += b;
if (a >= MOD) a -= MOD;
return a;
}
ll mul(ll a, ll b) { return a * b % MOD; }
void TC()
{
cin >> n >> s >> e;
for (int i = 1; i <= n; ++i) {
for (int j = 1; j <= n; ++j) {
ll &cur = dp[i][j];
if(i == 1){
cur = j == 1;
continue;
}
if(i == s || i == e){
cur = add(dp[i-1][j], dp[i-1][j-1]);
continue;
}
cur = add(mul(dp[i-1][j+1], j), mul(dp[i-1][j-1], j - (i>s) - (i>e)));
}
}
cout << dp[n][1];
}
int32_t main() {
#ifndef ONLINE_JUDGE
freopen("input.in", "r", stdin); freopen("output.out", "w", stdout);
#else
freopen("kangaroo.in", "r", stdin); freopen("kangaroo.out", "w", stdout);
#endif
Gondozu
int t = 1;
// cin >> t;
while (t--) {
TC();
cout << '\n';
}
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... |