# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
685021 | NeroZein | 캥거루 (CEOI16_kangaroo) | C++14 | 2082 ms | 596 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
* author: NeroZein
* created: 23.01.2023 08:16:46
*/
#include <bits/stdc++.h>
using namespace std;
const int md = 1e9+7;
inline int add(int a, int b){
a += b;
if(a >= md){
a -= md;
}
return a;
}
inline int mul(int a, int b){
return (int)((long long) a * b % md);
}
signed main(){
freopen("kangaroo.in", "r", stdin);
freopen("kangaroo.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, cs, cf;
cin >> n >> cs >> cf;
vector<int> dp(n);
dp[1] = 1;
for (int i = 2; i <= n; ++i){
vector<int> pd(n);
for (int j = 1; j <= n; ++j){
//endpoint either
if(i == cs || i == cf){
//alone or to the left or right to existing set
pd[j] = add(dp[j-1], dp[j]);
}
else{
//merge two sets or start a new one
pd[j] = add(mul(j, dp[j+1]), mul(j - (i > cs) - (i > cf), dp[j-1]));
}
}
swap(dp, pd);
}
cout << dp[1];
}
컴파일 시 표준 에러 (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... |