이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int inf = 0x3f3f3f3f;
const int mod = 1e9 + 7;
const int N = 2e3 + 15;
int n, s, t;
int dp[N][N];
inline int add(int a, int b) {
a += b;
if(a >= mod)
a -= mod;
if(a < 0)
a += mod;
return a;
}
inline void add_t(int &a, int b) {
a = add(a, b);
}
inline int mt(int a, int b) {
return 1ll * a * b % mod;
}
main() {
ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0);
// freopen("input.txt", "r", stdin);
cin >> n >> s >> t;
if(s > t)
swap(s, t);
dp[0][0] = 1;
for(int i = 1; i <= n; ++i) {
for(int j = 1; j <= n; ++j) {
if(i == t) {
add_t(dp[i][j], dp[i-1][j]);
add_t(dp[i][j], dp[i-1][j-1]);
}
else {
add_t(dp[i][j], dp[i-1][j-1]);
add_t(dp[i][j], mt(j * (j + 1), dp[i-1][j+1]));
}
}
}
cout << dp[n][1] << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
kangaroo.cpp:27:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main() {
^
# | 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... |